Class: Aws::RTBFabric::Types::AssociateCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RTBFabric::Types::AssociateCertificateRequest
- Defined in:
- gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#acm_certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the ACM certificate to associate.
-
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#gateway_id ⇒ String
The unique identifier of the gateway.
Instance Attribute Details
#acm_certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the ACM certificate to associate.
188 189 190 191 192 193 194 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 188 class AssociateCertificateRequest < Struct.new( :gateway_id, :acm_certificate_arn, :client_token) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ClientToken, but with
different parameters, the retry fails with an
IdempotentParameterMismatch error.
A suitable default value is auto-generated. You should normally not need to pass this option.
188 189 190 191 192 193 194 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 188 class AssociateCertificateRequest < Struct.new( :gateway_id, :acm_certificate_arn, :client_token) SENSITIVE = [] include Aws::Structure end |
#gateway_id ⇒ String
The unique identifier of the gateway.
188 189 190 191 192 193 194 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 188 class AssociateCertificateRequest < Struct.new( :gateway_id, :acm_certificate_arn, :client_token) SENSITIVE = [] include Aws::Structure end |