Class: AWSCDK::S3ObjectLambda::CfnAccessPoint::AliasProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::S3ObjectLambda::CfnAccessPoint::AliasProperty
- Defined in:
- s3_object_lambda/cfn_access_point.rb
Overview
The alias of an Object Lambda Access Point.
For more information, see How to use a bucket-style alias for your S3 bucket Object Lambda Access Point .
Instance Attribute Summary collapse
-
#status ⇒ String?
readonly
The status of the Object Lambda Access Point alias.
-
#value ⇒ String
readonly
The alias value of the Object Lambda Access Point.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value:, status: nil) ⇒ AliasProperty
constructor
A new instance of AliasProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(value:, status: nil) ⇒ AliasProperty
Returns a new instance of AliasProperty.
634 635 636 637 638 639 |
# File 's3_object_lambda/cfn_access_point.rb', line 634 def initialize(value:, status: nil) @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") @status = status Jsii::Type.check_type(@status, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "status") unless @status.nil? end |
Instance Attribute Details
#status ⇒ String? (readonly)
The status of the Object Lambda Access Point alias.
If the status is PROVISIONING , the Object Lambda Access Point is provisioning the alias and the alias is not ready for use yet. If the status is READY , the Object Lambda Access Point alias is successfully provisioned and ready for use.
652 653 654 |
# File 's3_object_lambda/cfn_access_point.rb', line 652 def status @status end |
#value ⇒ String (readonly)
The alias value of the Object Lambda Access Point.
645 646 647 |
# File 's3_object_lambda/cfn_access_point.rb', line 645 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
654 655 656 657 658 659 |
# File 's3_object_lambda/cfn_access_point.rb', line 654 def self.jsii_properties { :value => "value", :status => "status", } end |
Instance Method Details
#to_jsii ⇒ Object
661 662 663 664 665 666 667 668 |
# File 's3_object_lambda/cfn_access_point.rb', line 661 def to_jsii result = {} result.merge!({ "value" => @value, "status" => @status, }) result.compact end |