Class: AWSCDK::StepFunctions::AWSOwnedEncryptionConfiguration
- Inherits:
-
EncryptionConfiguration
- Object
- EncryptionConfiguration
- AWSCDK::StepFunctions::AWSOwnedEncryptionConfiguration
- Defined in:
- step_functions/aws_owned_encryption_configuration.rb
Overview
Define a new AwsOwnedEncryptionConfiguration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ AWSOwnedEncryptionConfiguration
constructor
A new instance of AWSOwnedEncryptionConfiguration.
-
#type ⇒ String
Encryption option for the state machine or activity.
- #type=(value) ⇒ Object
Constructor Details
#initialize ⇒ AWSOwnedEncryptionConfiguration
Returns a new instance of AWSOwnedEncryptionConfiguration.
8 9 10 |
# File 'step_functions/aws_owned_encryption_configuration.rb', line 8 def initialize Jsii::Object.instance_method(:initialize).bind(self).call end |
Class Method Details
.jsii_overridable_methods ⇒ Object
12 13 14 15 16 |
# File 'step_functions/aws_owned_encryption_configuration.rb', line 12 def self.jsii_overridable_methods { :type => { kind: :property, name: "type", is_optional: false }, } end |
Instance Method Details
#type ⇒ String
Encryption option for the state machine or activity.
Can be either CUSTOMER_MANAGED_KMS_KEY or AWS_OWNED_KEY.
23 24 25 |
# File 'step_functions/aws_owned_encryption_configuration.rb', line 23 def type() jsii_get_property("type") end |
#type=(value) ⇒ Object
27 28 29 30 |
# File 'step_functions/aws_owned_encryption_configuration.rb', line 27 def type=(value) Jsii::Type.check_type(value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") jsii_set_property("type", value) end |