Class: Aws::DatabaseMigrationService::Types::ImportCertificateMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::ImportCertificateMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:certificate_pem]
Instance Attribute Summary collapse
-
#certificate_identifier ⇒ String
A customer-assigned name for the certificate.
-
#certificate_pem ⇒ String
The contents of a ‘.pem` file, which contains an X.509 certificate.
-
#certificate_wallet ⇒ String
The location of an imported Oracle Wallet certificate for use with SSL.
-
#tags ⇒ Array<Types::Tag>
The tags associated with the certificate.
Instance Attribute Details
#certificate_identifier ⇒ String
A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can’t end with a hyphen or contain two consecutive hyphens.
6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 6336 class ImportCertificateMessage < Struct.new( :certificate_identifier, :certificate_pem, :certificate_wallet, :tags) SENSITIVE = [:certificate_pem] include Aws::Structure end |
#certificate_pem ⇒ String
The contents of a ‘.pem` file, which contains an X.509 certificate.
6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 6336 class ImportCertificateMessage < Struct.new( :certificate_identifier, :certificate_pem, :certificate_wallet, :tags) SENSITIVE = [:certificate_pem] include Aws::Structure end |
#certificate_wallet ⇒ String
The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a ‘.sso` file using the `fileb://` prefix. You can’t provide the certificate inline.
Example: ‘filebase64(“$Aws::DatabaseMigrationService::Types::ImportCertificateMessage.pathpath.root/rds-ca-2019-root.sso”)`
6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 6336 class ImportCertificateMessage < Struct.new( :certificate_identifier, :certificate_pem, :certificate_wallet, :tags) SENSITIVE = [:certificate_pem] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags associated with the certificate.
6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 6336 class ImportCertificateMessage < Struct.new( :certificate_identifier, :certificate_pem, :certificate_wallet, :tags) SENSITIVE = [:certificate_pem] include Aws::Structure end |