Class: AWSCDK::ECS::CfnService::ServiceConnectTLSCertificateAuthorityProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ecs/cfn_service.rb

Overview

The certificate root authority that secures your service.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(aws_pca_authority_arn: nil) ⇒ ServiceConnectTLSCertificateAuthorityProperty

Returns a new instance of ServiceConnectTLSCertificateAuthorityProperty.

Parameters:

  • aws_pca_authority_arn (String, nil) (defaults to: nil)

    The ARN of the AWS Private Certificate Authority certificate.



2835
2836
2837
2838
# File 'ecs/cfn_service.rb', line 2835

def initialize(aws_pca_authority_arn: nil)
  @aws_pca_authority_arn = 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_arnString? (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
  @aws_pca_authority_arn
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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