Documentation ¶
Index ¶
- func CfnContainer_CFN_RESOURCE_TYPE_NAME() *string
- func CfnContainer_IsCfnElement(x interface{}) *bool
- func CfnContainer_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnContainer_IsConstruct(x interface{}) *bool
- func NewCfnContainer_Override(c CfnContainer, scope constructs.Construct, id *string, ...)
- type CfnContainer
- type CfnContainerProps
- type CfnContainer_CorsRuleProperty
- type CfnContainer_MetricPolicyProperty
- type CfnContainer_MetricPolicyRuleProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnContainer_CFN_RESOURCE_TYPE_NAME ¶
func CfnContainer_CFN_RESOURCE_TYPE_NAME() *string
func CfnContainer_IsCfnElement ¶
func CfnContainer_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.
func CfnContainer_IsCfnResource ¶
func CfnContainer_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnContainer_IsConstruct ¶
func CfnContainer_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnContainer_Override ¶
func NewCfnContainer_Override(c CfnContainer, scope constructs.Construct, id *string, props *CfnContainerProps)
Create a new `AWS::MediaStore::Container`.
Types ¶
type CfnContainer ¶
type CfnContainer interface { awscdk.CfnResource awscdk.IInspectable AccessLoggingEnabled() interface{} SetAccessLoggingEnabled(val interface{}) AttrEndpoint() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ContainerName() *string SetContainerName(val *string) CorsPolicy() interface{} SetCorsPolicy(val interface{}) CreationStack() *[]*string LifecyclePolicy() *string SetLifecyclePolicy(val *string) LogicalId() *string MetricPolicy() interface{} SetMetricPolicy(val interface{}) Node() constructs.Node Policy() *string SetPolicy(val *string) Ref() *string Stack() awscdk.Stack Tags() awscdk.TagManager UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::MediaStore::Container`.
func NewCfnContainer ¶
func NewCfnContainer(scope constructs.Construct, id *string, props *CfnContainerProps) CfnContainer
Create a new `AWS::MediaStore::Container`.
type CfnContainerProps ¶
type CfnContainerProps struct { // `AWS::MediaStore::Container.ContainerName`. ContainerName *string `json:"containerName"` // `AWS::MediaStore::Container.AccessLoggingEnabled`. AccessLoggingEnabled interface{} `json:"accessLoggingEnabled"` // `AWS::MediaStore::Container.CorsPolicy`. CorsPolicy interface{} `json:"corsPolicy"` // `AWS::MediaStore::Container.LifecyclePolicy`. LifecyclePolicy *string `json:"lifecyclePolicy"` // `AWS::MediaStore::Container.MetricPolicy`. MetricPolicy interface{} `json:"metricPolicy"` // `AWS::MediaStore::Container.Policy`. Policy *string `json:"policy"` // `AWS::MediaStore::Container.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::MediaStore::Container`.
type CfnContainer_CorsRuleProperty ¶
type CfnContainer_CorsRuleProperty struct { // `CfnContainer.CorsRuleProperty.AllowedHeaders`. AllowedHeaders *[]*string `json:"allowedHeaders"` // `CfnContainer.CorsRuleProperty.AllowedMethods`. AllowedMethods *[]*string `json:"allowedMethods"` // `CfnContainer.CorsRuleProperty.AllowedOrigins`. AllowedOrigins *[]*string `json:"allowedOrigins"` // `CfnContainer.CorsRuleProperty.ExposeHeaders`. ExposeHeaders *[]*string `json:"exposeHeaders"` // `CfnContainer.CorsRuleProperty.MaxAgeSeconds`. MaxAgeSeconds *float64 `json:"maxAgeSeconds"` }
type CfnContainer_MetricPolicyProperty ¶
type CfnContainer_MetricPolicyProperty struct { // `CfnContainer.MetricPolicyProperty.ContainerLevelMetrics`. ContainerLevelMetrics *string `json:"containerLevelMetrics"` // `CfnContainer.MetricPolicyProperty.MetricPolicyRules`. MetricPolicyRules interface{} `json:"metricPolicyRules"` }