Class: Aws::ElasticLoadBalancingV2::Types::AddListenerCertificatesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::AddListenerCertificatesInput
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass AddListenerCertificatesInput data as a hash:
{
listener_arn: "ListenerArn", # required
certificates: [ # required
{
certificate_arn: "CertificateArn",
is_default: false,
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificates ⇒ Array<Types::Certificate>
The certificate to add.
-
#listener_arn ⇒ String
The Amazon Resource Name (ARN) of the listener.
Instance Attribute Details
#certificates ⇒ Array<Types::Certificate>
The certificate to add. You can specify one certificate per call.
Set CertificateArn
to the certificate ARN but do not set
IsDefault
.
176 177 178 179 180 181 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 176 class AddListenerCertificatesInput < Struct.new( :listener_arn, :certificates) SENSITIVE = [] include Aws::Structure end |
#listener_arn ⇒ String
The Amazon Resource Name (ARN) of the listener.
176 177 178 179 180 181 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 176 class AddListenerCertificatesInput < Struct.new( :listener_arn, :certificates) SENSITIVE = [] include Aws::Structure end |