LightsailClient
Auto-generated documentation for Lightsail type annotations stubs module mypy-boto3-lightsail.
LightsailClient
Type annotations and code completion for boto3.client("lightsail")
.
boto3 documentation
from boto3.session import Session
from mypy_boto3_lightsail.client import LightsailClient
def get_lightsail_client() -> LightsailClient:
return Session().client("lightsail")
Exceptions
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("lightsail").exceptions
structure.
client = boto3.client("lightsail")
try:
do_something(client)
except (
client.AccessDeniedException,
client.AccountSetupInProgressException,
client.ClientError,
client.InvalidInputException,
client.NotFoundException,
client.OperationFailureException,
client.ServiceException,
client.UnauthenticatedException,
) as e:
print(e)
from mypy_boto3_lightsail.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods
allocate_static_ip
Allocates a static IP address.
Type annotations and code completion for boto3.client("lightsail").allocate_static_ip
method.
boto3 documentation
def allocate_static_ip(
self,
*,
staticIpName: str,
) -> AllocateStaticIpResultTypeDef: # (1)
...
kwargs: AllocateStaticIpRequestRequestTypeDef = { # (1)
"staticIpName": ...,
}
parent.allocate_static_ip(**kwargs)
attach_certificate_to_distribution
Attaches an SSL/TLS certificate to your Amazon Lightsail content delivery network (CDN) distribution.
Type annotations and code completion for boto3.client("lightsail").attach_certificate_to_distribution
method.
boto3 documentation
def attach_certificate_to_distribution(
self,
*,
distributionName: str,
certificateName: str,
) -> AttachCertificateToDistributionResultTypeDef: # (1)
...
kwargs: AttachCertificateToDistributionRequestRequestTypeDef = { # (1)
"distributionName": ...,
"certificateName": ...,
}
parent.attach_certificate_to_distribution(**kwargs)
attach_disk
Attaches a block storage disk to a running or stopped Lightsail instance and exposes it to the instance with the specified disk name.
Type annotations and code completion for boto3.client("lightsail").attach_disk
method.
boto3 documentation
def attach_disk(
self,
*,
diskName: str,
instanceName: str,
diskPath: str,
) -> AttachDiskResultTypeDef: # (1)
...
kwargs: AttachDiskRequestRequestTypeDef = { # (1)
"diskName": ...,
"instanceName": ...,
"diskPath": ...,
}
parent.attach_disk(**kwargs)
attach_instances_to_load_balancer
Attaches one or more Lightsail instances to a load balancer.
Type annotations and code completion for boto3.client("lightsail").attach_instances_to_load_balancer
method.
boto3 documentation
def attach_instances_to_load_balancer(
self,
*,
loadBalancerName: str,
instanceNames: Sequence[str],
) -> AttachInstancesToLoadBalancerResultTypeDef: # (1)
...
kwargs: AttachInstancesToLoadBalancerRequestRequestTypeDef = { # (1)
"loadBalancerName": ...,
"instanceNames": ...,
}
parent.attach_instances_to_load_balancer(**kwargs)
attach_load_balancer_tls_certificate
Attaches a Transport Layer Security (TLS) certificate to your load balancer.
Type annotations and code completion for boto3.client("lightsail").attach_load_balancer_tls_certificate
method.
boto3 documentation
def attach_load_balancer_tls_certificate(
self,
*,
loadBalancerName: str,
certificateName: str,
) -> AttachLoadBalancerTlsCertificateResultTypeDef: # (1)
...
kwargs: AttachLoadBalancerTlsCertificateRequestRequestTypeDef = { # (1)
"loadBalancerName": ...,
"certificateName": ...,
}
parent.attach_load_balancer_tls_certificate(**kwargs)
attach_static_ip
Attaches a static IP address to a specific Amazon Lightsail instance.
Type annotations and code completion for boto3.client("lightsail").attach_static_ip
method.
boto3 documentation
def attach_static_ip(
self,
*,
staticIpName: str,
instanceName: str,
) -> AttachStaticIpResultTypeDef: # (1)
...
kwargs: AttachStaticIpRequestRequestTypeDef = { # (1)
"staticIpName": ...,
"instanceName": ...,
}
parent.attach_static_ip(**kwargs)
can_paginate
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("lightsail").can_paginate
method.
boto3 documentation
close
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("lightsail").close
method.
boto3 documentation
close_instance_public_ports
Closes ports for a specific Amazon Lightsail instance.
Type annotations and code completion for boto3.client("lightsail").close_instance_public_ports
method.
boto3 documentation
def close_instance_public_ports(
self,
*,
portInfo: PortInfoTypeDef, # (1)
instanceName: str,
) -> CloseInstancePublicPortsResultTypeDef: # (2)
...
kwargs: CloseInstancePublicPortsRequestRequestTypeDef = { # (1)
"portInfo": ...,
"instanceName": ...,
}
parent.close_instance_public_ports(**kwargs)
copy_snapshot
Copies a manual snapshot of an instance or disk as another manual snapshot, or copies an automatic snapshot of an instance or disk as a manual snapshot.
Type annotations and code completion for boto3.client("lightsail").copy_snapshot
method.
boto3 documentation
def copy_snapshot(
self,
*,
targetSnapshotName: str,
sourceRegion: RegionNameType, # (1)
sourceSnapshotName: str = ...,
sourceResourceName: str = ...,
restoreDate: str = ...,
useLatestRestorableAutoSnapshot: bool = ...,
) -> CopySnapshotResultTypeDef: # (2)
...
kwargs: CopySnapshotRequestRequestTypeDef = { # (1)
"targetSnapshotName": ...,
"sourceRegion": ...,
}
parent.copy_snapshot(**kwargs)
create_bucket
Creates an Amazon Lightsail bucket.
Type annotations and code completion for boto3.client("lightsail").create_bucket
method.
boto3 documentation
def create_bucket(
self,
*,
bucketName: str,
bundleId: str,
tags: Sequence[TagTypeDef] = ..., # (1)
enableObjectVersioning: bool = ...,
) -> CreateBucketResultTypeDef: # (2)
...
- See TagTypeDef
- See CreateBucketResultTypeDef
kwargs: CreateBucketRequestRequestTypeDef = { # (1)
"bucketName": ...,
"bundleId": ...,
}
parent.create_bucket(**kwargs)
create_bucket_access_key
Creates a new access key for the specified Amazon Lightsail bucket.
Type annotations and code completion for boto3.client("lightsail").create_bucket_access_key
method.
boto3 documentation
def create_bucket_access_key(
self,
*,
bucketName: str,
) -> CreateBucketAccessKeyResultTypeDef: # (1)
...
kwargs: CreateBucketAccessKeyRequestRequestTypeDef = { # (1)
"bucketName": ...,
}
parent.create_bucket_access_key(**kwargs)
create_certificate
Creates an SSL/TLS certificate for an Amazon Lightsail content delivery network (CDN) distribution and a container service.
Type annotations and code completion for boto3.client("lightsail").create_certificate
method.
boto3 documentation
def create_certificate(
self,
*,
certificateName: str,
domainName: str,
subjectAlternativeNames: Sequence[str] = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateCertificateResultTypeDef: # (2)
...
kwargs: CreateCertificateRequestRequestTypeDef = { # (1)
"certificateName": ...,
"domainName": ...,
}
parent.create_certificate(**kwargs)
create_cloud_formation_stack
Creates an AWS CloudFormation stack, which creates a new Amazon EC2 instance from an exported Amazon Lightsail snapshot.
Type annotations and code completion for boto3.client("lightsail").create_cloud_formation_stack
method.
boto3 documentation
def create_cloud_formation_stack(
self,
*,
instances: Sequence[InstanceEntryTypeDef], # (1)
) -> CreateCloudFormationStackResultTypeDef: # (2)
...
kwargs: CreateCloudFormationStackRequestRequestTypeDef = { # (1)
"instances": ...,
}
parent.create_cloud_formation_stack(**kwargs)
create_contact_method
Creates an email or SMS text message contact method.
Type annotations and code completion for boto3.client("lightsail").create_contact_method
method.
boto3 documentation
def create_contact_method(
self,
*,
protocol: ContactProtocolType, # (1)
contactEndpoint: str,
) -> CreateContactMethodResultTypeDef: # (2)
...
kwargs: CreateContactMethodRequestRequestTypeDef = { # (1)
"protocol": ...,
"contactEndpoint": ...,
}
parent.create_contact_method(**kwargs)
create_container_service
Creates an Amazon Lightsail container service.
Type annotations and code completion for boto3.client("lightsail").create_container_service
method.
boto3 documentation
def create_container_service(
self,
*,
serviceName: str,
power: ContainerServicePowerNameType, # (1)
scale: int,
tags: Sequence[TagTypeDef] = ..., # (2)
publicDomainNames: Mapping[str, Sequence[str]] = ...,
deployment: ContainerServiceDeploymentRequestTypeDef = ..., # (3)
privateRegistryAccess: PrivateRegistryAccessRequestTypeDef = ..., # (4)
) -> CreateContainerServiceResultTypeDef: # (5)
...
- See ContainerServicePowerNameType
- See TagTypeDef
- See ContainerServiceDeploymentRequestTypeDef
- See PrivateRegistryAccessRequestTypeDef
- See CreateContainerServiceResultTypeDef
kwargs: CreateContainerServiceRequestRequestTypeDef = { # (1)
"serviceName": ...,
"power": ...,
"scale": ...,
}
parent.create_container_service(**kwargs)
create_container_service_deployment
Creates a deployment for your Amazon Lightsail container service.
Type annotations and code completion for boto3.client("lightsail").create_container_service_deployment
method.
boto3 documentation
def create_container_service_deployment(
self,
*,
serviceName: str,
containers: Mapping[str, ContainerTypeDef] = ..., # (1)
publicEndpoint: EndpointRequestTypeDef = ..., # (2)
) -> CreateContainerServiceDeploymentResultTypeDef: # (3)
...
kwargs: CreateContainerServiceDeploymentRequestRequestTypeDef = { # (1)
"serviceName": ...,
}
parent.create_container_service_deployment(**kwargs)
create_container_service_registry_login
Creates a temporary set of log in credentials that you can use to log in to the Docker process on your local machine.
Type annotations and code completion for boto3.client("lightsail").create_container_service_registry_login
method.
boto3 documentation
def create_container_service_registry_login(
self,
) -> CreateContainerServiceRegistryLoginResultTypeDef: # (1)
...
create_disk
Creates a block storage disk that can be attached to an Amazon Lightsail
instance in the same Availability Zone (e.g., us-east-2a
).
Type annotations and code completion for boto3.client("lightsail").create_disk
method.
boto3 documentation
def create_disk(
self,
*,
diskName: str,
availabilityZone: str,
sizeInGb: int,
tags: Sequence[TagTypeDef] = ..., # (1)
addOns: Sequence[AddOnRequestTypeDef] = ..., # (2)
) -> CreateDiskResultTypeDef: # (3)
...
- See TagTypeDef
- See AddOnRequestTypeDef
- See CreateDiskResultTypeDef
kwargs: CreateDiskRequestRequestTypeDef = { # (1)
"diskName": ...,
"availabilityZone": ...,
"sizeInGb": ...,
}
parent.create_disk(**kwargs)
create_disk_from_snapshot
Creates a block storage disk from a manual or automatic snapshot of a disk.
Type annotations and code completion for boto3.client("lightsail").create_disk_from_snapshot
method.
boto3 documentation
def create_disk_from_snapshot(
self,
*,
diskName: str,
availabilityZone: str,
sizeInGb: int,
diskSnapshotName: str = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
addOns: Sequence[AddOnRequestTypeDef] = ..., # (2)
sourceDiskName: str = ...,
restoreDate: str = ...,
useLatestRestorableAutoSnapshot: bool = ...,
) -> CreateDiskFromSnapshotResultTypeDef: # (3)
...
kwargs: CreateDiskFromSnapshotRequestRequestTypeDef = { # (1)
"diskName": ...,
"availabilityZone": ...,
"sizeInGb": ...,
}
parent.create_disk_from_snapshot(**kwargs)
create_disk_snapshot
Creates a snapshot of a block storage disk.
Type annotations and code completion for boto3.client("lightsail").create_disk_snapshot
method.
boto3 documentation
def create_disk_snapshot(
self,
*,
diskSnapshotName: str,
diskName: str = ...,
instanceName: str = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateDiskSnapshotResultTypeDef: # (2)
...
kwargs: CreateDiskSnapshotRequestRequestTypeDef = { # (1)
"diskSnapshotName": ...,
}
parent.create_disk_snapshot(**kwargs)
create_distribution
Creates an Amazon Lightsail content delivery network (CDN) distribution.
Type annotations and code completion for boto3.client("lightsail").create_distribution
method.
boto3 documentation
def create_distribution(
self,
*,
distributionName: str,
origin: InputOriginTypeDef, # (1)
defaultCacheBehavior: CacheBehaviorTypeDef, # (2)
bundleId: str,
cacheBehaviorSettings: CacheSettingsTypeDef = ..., # (3)
cacheBehaviors: Sequence[CacheBehaviorPerPathTypeDef] = ..., # (4)
ipAddressType: IpAddressTypeType = ..., # (5)
tags: Sequence[TagTypeDef] = ..., # (6)
) -> CreateDistributionResultTypeDef: # (7)
...
- See InputOriginTypeDef
- See CacheBehaviorTypeDef
- See CacheSettingsTypeDef
- See CacheBehaviorPerPathTypeDef
- See IpAddressTypeType
- See TagTypeDef
- See CreateDistributionResultTypeDef
kwargs: CreateDistributionRequestRequestTypeDef = { # (1)
"distributionName": ...,
"origin": ...,
"defaultCacheBehavior": ...,
"bundleId": ...,
}
parent.create_distribution(**kwargs)
create_domain
Creates a domain resource for the specified domain (e.g., example.com).
Type annotations and code completion for boto3.client("lightsail").create_domain
method.
boto3 documentation
def create_domain(
self,
*,
domainName: str,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateDomainResultTypeDef: # (2)
...
- See TagTypeDef
- See CreateDomainResultTypeDef
kwargs: CreateDomainRequestRequestTypeDef = { # (1)
"domainName": ...,
}
parent.create_domain(**kwargs)
create_domain_entry
Creates one of the following domain name system (DNS) records in a domain DNS zone: Address (A), canonical name (CNAME), mail exchanger (MX), name server (NS), start of authority (SOA), service locator (SRV), or text (TXT).
Type annotations and code completion for boto3.client("lightsail").create_domain_entry
method.
boto3 documentation
def create_domain_entry(
self,
*,
domainName: str,
domainEntry: DomainEntryTypeDef, # (1)
) -> CreateDomainEntryResultTypeDef: # (2)
...
kwargs: CreateDomainEntryRequestRequestTypeDef = { # (1)
"domainName": ...,
"domainEntry": ...,
}
parent.create_domain_entry(**kwargs)
create_instance_snapshot
Creates a snapshot of a specific virtual private server, or instance.
Type annotations and code completion for boto3.client("lightsail").create_instance_snapshot
method.
boto3 documentation
def create_instance_snapshot(
self,
*,
instanceSnapshotName: str,
instanceName: str,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateInstanceSnapshotResultTypeDef: # (2)
...
kwargs: CreateInstanceSnapshotRequestRequestTypeDef = { # (1)
"instanceSnapshotName": ...,
"instanceName": ...,
}
parent.create_instance_snapshot(**kwargs)
create_instances
Creates one or more Amazon Lightsail instances.
Type annotations and code completion for boto3.client("lightsail").create_instances
method.
boto3 documentation
def create_instances(
self,
*,
instanceNames: Sequence[str],
availabilityZone: str,
blueprintId: str,
bundleId: str,
customImageName: str = ...,
userData: str = ...,
keyPairName: str = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
addOns: Sequence[AddOnRequestTypeDef] = ..., # (2)
ipAddressType: IpAddressTypeType = ..., # (3)
) -> CreateInstancesResultTypeDef: # (4)
...
- See TagTypeDef
- See AddOnRequestTypeDef
- See IpAddressTypeType
- See CreateInstancesResultTypeDef
kwargs: CreateInstancesRequestRequestTypeDef = { # (1)
"instanceNames": ...,
"availabilityZone": ...,
"blueprintId": ...,
"bundleId": ...,
}
parent.create_instances(**kwargs)
create_instances_from_snapshot
Creates one or more new instances from a manual or automatic snapshot of an instance.
Type annotations and code completion for boto3.client("lightsail").create_instances_from_snapshot
method.
boto3 documentation
def create_instances_from_snapshot(
self,
*,
instanceNames: Sequence[str],
availabilityZone: str,
bundleId: str,
attachedDiskMapping: Mapping[str, Sequence[DiskMapTypeDef]] = ..., # (1)
instanceSnapshotName: str = ...,
userData: str = ...,
keyPairName: str = ...,
tags: Sequence[TagTypeDef] = ..., # (2)
addOns: Sequence[AddOnRequestTypeDef] = ..., # (3)
ipAddressType: IpAddressTypeType = ..., # (4)
sourceInstanceName: str = ...,
restoreDate: str = ...,
useLatestRestorableAutoSnapshot: bool = ...,
) -> CreateInstancesFromSnapshotResultTypeDef: # (5)
...
- See DiskMapTypeDef
- See TagTypeDef
- See AddOnRequestTypeDef
- See IpAddressTypeType
- See CreateInstancesFromSnapshotResultTypeDef
kwargs: CreateInstancesFromSnapshotRequestRequestTypeDef = { # (1)
"instanceNames": ...,
"availabilityZone": ...,
"bundleId": ...,
}
parent.create_instances_from_snapshot(**kwargs)
create_key_pair
Creates a custom SSH key pair that you can use with an Amazon Lightsail instance.
Type annotations and code completion for boto3.client("lightsail").create_key_pair
method.
boto3 documentation
def create_key_pair(
self,
*,
keyPairName: str,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateKeyPairResultTypeDef: # (2)
...
- See TagTypeDef
- See CreateKeyPairResultTypeDef
kwargs: CreateKeyPairRequestRequestTypeDef = { # (1)
"keyPairName": ...,
}
parent.create_key_pair(**kwargs)
create_load_balancer
Creates a Lightsail load balancer.
Type annotations and code completion for boto3.client("lightsail").create_load_balancer
method.
boto3 documentation
def create_load_balancer(
self,
*,
loadBalancerName: str,
instancePort: int,
healthCheckPath: str = ...,
certificateName: str = ...,
certificateDomainName: str = ...,
certificateAlternativeNames: Sequence[str] = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
ipAddressType: IpAddressTypeType = ..., # (2)
tlsPolicyName: str = ...,
) -> CreateLoadBalancerResultTypeDef: # (3)
...
kwargs: CreateLoadBalancerRequestRequestTypeDef = { # (1)
"loadBalancerName": ...,
"instancePort": ...,
}
parent.create_load_balancer(**kwargs)
create_load_balancer_tls_certificate
Creates an SSL/TLS certificate for an Amazon Lightsail load balancer.
Type annotations and code completion for boto3.client("lightsail").create_load_balancer_tls_certificate
method.
boto3 documentation
def create_load_balancer_tls_certificate(
self,
*,
loadBalancerName: str,
certificateName: str,
certificateDomainName: str,
certificateAlternativeNames: Sequence[str] = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateLoadBalancerTlsCertificateResultTypeDef: # (2)
...
kwargs: CreateLoadBalancerTlsCertificateRequestRequestTypeDef = { # (1)
"loadBalancerName": ...,
"certificateName": ...,
"certificateDomainName": ...,
}
parent.create_load_balancer_tls_certificate(**kwargs)
create_relational_database
Creates a new database in Amazon Lightsail.
Type annotations and code completion for boto3.client("lightsail").create_relational_database
method.
boto3 documentation
def create_relational_database(
self,
*,
relationalDatabaseName: str,
relationalDatabaseBlueprintId: str,
relationalDatabaseBundleId: str,
masterDatabaseName: str,
masterUsername: str,
availabilityZone: str = ...,
masterUserPassword: str = ...,
preferredBackupWindow: str = ...,
preferredMaintenanceWindow: str = ...,
publiclyAccessible: bool = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateRelationalDatabaseResultTypeDef: # (2)
...
kwargs: CreateRelationalDatabaseRequestRequestTypeDef = { # (1)
"relationalDatabaseName": ...,
"relationalDatabaseBlueprintId": ...,
"relationalDatabaseBundleId": ...,
"masterDatabaseName": ...,
"masterUsername": ...,
}
parent.create_relational_database(**kwargs)
create_relational_database_from_snapshot
Creates a new database from an existing database snapshot in Amazon Lightsail.
Type annotations and code completion for boto3.client("lightsail").create_relational_database_from_snapshot
method.
boto3 documentation
def create_relational_database_from_snapshot(
self,
*,
relationalDatabaseName: str,
availabilityZone: str = ...,
publiclyAccessible: bool = ...,
relationalDatabaseSnapshotName: str = ...,
relationalDatabaseBundleId: str = ...,
sourceRelationalDatabaseName: str = ...,
restoreTime: Union[datetime, str] = ...,
useLatestRestorableTime: bool = ...,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateRelationalDatabaseFromSnapshotResultTypeDef: # (2)
...
kwargs: CreateRelationalDatabaseFromSnapshotRequestRequestTypeDef = { # (1)
"relationalDatabaseName": ...,
}
parent.create_relational_database_from_snapshot(**kwargs)
create_relational_database_snapshot
Creates a snapshot of your database in Amazon Lightsail.
Type annotations and code completion for boto3.client("lightsail").create_relational_database_snapshot
method.
boto3 documentation
def create_relational_database_snapshot(
self,
*,
relationalDatabaseName: str,
relationalDatabaseSnapshotName: str,
tags: Sequence[TagTypeDef] = ..., # (1)
) -> CreateRelationalDatabaseSnapshotResultTypeDef: # (2)
...
kwargs: CreateRelationalDatabaseSnapshotRequestRequestTypeDef = { # (1)
"relationalDatabaseName": ...,
"relationalDatabaseSnapshotName": ...,
}
parent.create_relational_database_snapshot(**kwargs)
delete_alarm
Deletes an alarm.
Type annotations and code completion for boto3.client("lightsail").delete_alarm
method.
boto3 documentation
def delete_alarm(
self,
*,
alarmName: str,
) -> DeleteAlarmResultTypeDef: # (1)
...
kwargs: DeleteAlarmRequestRequestTypeDef = { # (1)
"alarmName": ...,
}
parent.delete_alarm(**kwargs)
delete_auto_snapshot
Deletes an automatic snapshot of an instance or disk.
Type annotations and code completion for boto3.client("lightsail").delete_auto_snapshot
method.
boto3 documentation
def delete_auto_snapshot(
self,
*,
resourceName: str,
date: str,
) -> DeleteAutoSnapshotResultTypeDef: # (1)
...
kwargs: DeleteAutoSnapshotRequestRequestTypeDef = { # (1)
"resourceName": ...,
"date": ...,
}
parent.delete_auto_snapshot(**kwargs)
delete_bucket
Deletes a Amazon Lightsail bucket.
Type annotations and code completion for boto3.client("lightsail").delete_bucket
method.
boto3 documentation
def delete_bucket(
self,
*,
bucketName: str,
forceDelete: bool = ...,
) -> DeleteBucketResultTypeDef: # (1)
...
kwargs: DeleteBucketRequestRequestTypeDef = { # (1)
"bucketName": ...,
}
parent.delete_bucket(**kwargs)
delete_bucket_access_key
Deletes an access key for the specified Amazon Lightsail bucket.
Type annotations and code completion for boto3.client("lightsail").delete_bucket_access_key
method.
boto3 documentation
def delete_bucket_access_key(
self,
*,
bucketName: str,
accessKeyId: str,
) -> DeleteBucketAccessKeyResultTypeDef: # (1)
...
kwargs: DeleteBucketAccessKeyRequestRequestTypeDef = { # (1)
"bucketName": ...,
"accessKeyId": ...,
}
parent.delete_bucket_access_key(**kwargs)
delete_certificate
Deletes an SSL/TLS certificate for your Amazon Lightsail content delivery network (CDN) distribution.
Type annotations and code completion for boto3.client("lightsail").delete_certificate
method.
boto3 documentation