Class: AWSCDK::Interfaces::AWSElasticloadbalancingv2::TrustStoreRevocationReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb

Overview

A reference to a TrustStoreRevocation resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(revocation_id:, trust_store_arn:) ⇒ TrustStoreRevocationReference

Returns a new instance of TrustStoreRevocationReference.

Parameters:

  • revocation_id (String)

    The RevocationId of the TrustStoreRevocation resource.

  • trust_store_arn (String)

    The TrustStoreArn of the TrustStoreRevocation resource.



9
10
11
12
13
14
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 9

def initialize(revocation_id:, trust_store_arn:)
  @revocation_id = revocation_id
  Jsii::Type.check_type(@revocation_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "revocationId")
  @trust_store_arn = trust_store_arn
  Jsii::Type.check_type(@trust_store_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "trustStoreArn")
end

Instance Attribute Details

#revocation_idString (readonly)

The RevocationId of the TrustStoreRevocation resource.

Returns:

  • (String)


19
20
21
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 19

def revocation_id
  @revocation_id
end

#trust_store_arnString (readonly)

The TrustStoreArn of the TrustStoreRevocation resource.

Returns:

  • (String)


23
24
25
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 23

def trust_store_arn
  @trust_store_arn
end

Class Method Details

.jsii_propertiesObject



25
26
27
28
29
30
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 25

def self.jsii_properties
  {
    :revocation_id => "revocationId",
    :trust_store_arn => "trustStoreArn",
  }
end

Instance Method Details

#to_jsiiObject



32
33
34
35
36
37
38
39
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 32

def to_jsii
  result = {}
  result.merge!({
    "revocationId" => @revocation_id,
    "trustStoreArn" => @trust_store_arn,
  })
  result.compact
end