Class: AWSCDK::Interfaces::AWSElasticloadbalancingv2::TrustStoreRevocationReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSElasticloadbalancingv2::TrustStoreRevocationReference
- Defined in:
- interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb
Overview
A reference to a TrustStoreRevocation resource.
Instance Attribute Summary collapse
-
#revocation_id ⇒ String
readonly
The RevocationId of the TrustStoreRevocation resource.
-
#trust_store_arn ⇒ String
readonly
The TrustStoreArn of the TrustStoreRevocation resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(revocation_id:, trust_store_arn:) ⇒ TrustStoreRevocationReference
constructor
A new instance of TrustStoreRevocationReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(revocation_id:, trust_store_arn:) ⇒ TrustStoreRevocationReference
Returns a new instance of TrustStoreRevocationReference.
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_id ⇒ String (readonly)
The RevocationId of the TrustStoreRevocation resource.
19 20 21 |
# File 'interfaces/aws_elasticloadbalancingv2/trust_store_revocation_reference.rb', line 19 def revocation_id @revocation_id end |
#trust_store_arn ⇒ String (readonly)
The TrustStoreArn of the TrustStoreRevocation resource.
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_properties ⇒ Object
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_jsii ⇒ Object
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 |