Class: AWSCDK::ECS::CfnService::ServiceConnectTLSCertificateAuthorityProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ECS::CfnService::ServiceConnectTLSCertificateAuthorityProperty
- Defined in:
- ecs/cfn_service.rb
Overview
The certificate root authority that secures your service.
Instance Attribute Summary collapse
-
#aws_pca_authority_arn ⇒ String?
readonly
The ARN of the AWS Private Certificate Authority certificate.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(aws_pca_authority_arn: nil) ⇒ ServiceConnectTLSCertificateAuthorityProperty
constructor
A new instance of ServiceConnectTLSCertificateAuthorityProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(aws_pca_authority_arn: nil) ⇒ ServiceConnectTLSCertificateAuthorityProperty
Returns a new instance of ServiceConnectTLSCertificateAuthorityProperty.
2835 2836 2837 2838 |
# File 'ecs/cfn_service.rb', line 2835 def initialize(aws_pca_authority_arn: nil) @aws_pca_authority_arn = Jsii::Type.check_type(@aws_pca_authority_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "awsPcaAuthorityArn") unless @aws_pca_authority_arn.nil? end |
Instance Attribute Details
#aws_pca_authority_arn ⇒ String? (readonly)
The ARN of the AWS Private Certificate Authority certificate.
2844 2845 2846 |
# File 'ecs/cfn_service.rb', line 2844 def @aws_pca_authority_arn end |
Class Method Details
.jsii_properties ⇒ Object
2846 2847 2848 2849 2850 |
# File 'ecs/cfn_service.rb', line 2846 def self.jsii_properties { :aws_pca_authority_arn => "awsPcaAuthorityArn", } end |
Instance Method Details
#to_jsii ⇒ Object
2852 2853 2854 2855 2856 2857 2858 |
# File 'ecs/cfn_service.rb', line 2852 def to_jsii result = {} result.merge!({ "awsPcaAuthorityArn" => @aws_pca_authority_arn, }) result.compact end |