Documentation ¶
Index ¶
- func CfnVirtualCluster_CFN_RESOURCE_TYPE_NAME() *string
- func CfnVirtualCluster_IsCfnElement(x interface{}) *bool
- func CfnVirtualCluster_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnVirtualCluster_IsConstruct(x interface{}) *bool
- func NewCfnVirtualCluster_Override(c CfnVirtualCluster, scope constructs.Construct, id *string, ...)
- type CfnVirtualCluster
- type CfnVirtualClusterProps
- type CfnVirtualCluster_ContainerInfoProperty
- type CfnVirtualCluster_ContainerProviderProperty
- type CfnVirtualCluster_EksInfoProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnVirtualCluster_CFN_RESOURCE_TYPE_NAME ¶
func CfnVirtualCluster_CFN_RESOURCE_TYPE_NAME() *string
func CfnVirtualCluster_IsCfnElement ¶
func CfnVirtualCluster_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.
func CfnVirtualCluster_IsCfnResource ¶
func CfnVirtualCluster_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnVirtualCluster_IsConstruct ¶
func CfnVirtualCluster_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 NewCfnVirtualCluster_Override ¶
func NewCfnVirtualCluster_Override(c CfnVirtualCluster, scope constructs.Construct, id *string, props *CfnVirtualClusterProps)
Create a new `AWS::EMRContainers::VirtualCluster`.
Types ¶
type CfnVirtualCluster ¶
type CfnVirtualCluster interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string AttrId() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ContainerProvider() interface{} SetContainerProvider(val interface{}) CreationStack() *[]*string LogicalId() *string Name() *string SetName(val *string) Node() constructs.Node 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::EMRContainers::VirtualCluster`.
TODO: EXAMPLE
func NewCfnVirtualCluster ¶
func NewCfnVirtualCluster(scope constructs.Construct, id *string, props *CfnVirtualClusterProps) CfnVirtualCluster
Create a new `AWS::EMRContainers::VirtualCluster`.
type CfnVirtualClusterProps ¶
type CfnVirtualClusterProps struct { // `AWS::EMRContainers::VirtualCluster.ContainerProvider`. ContainerProvider interface{} `json:"containerProvider"` // `AWS::EMRContainers::VirtualCluster.Name`. Name *string `json:"name"` // `AWS::EMRContainers::VirtualCluster.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::EMRContainers::VirtualCluster`.
TODO: EXAMPLE
type CfnVirtualCluster_ContainerInfoProperty ¶
type CfnVirtualCluster_ContainerInfoProperty struct {
// `CfnVirtualCluster.ContainerInfoProperty.EksInfo`.
EksInfo interface{} `json:"eksInfo"`
}
TODO: EXAMPLE
type CfnVirtualCluster_ContainerProviderProperty ¶
type CfnVirtualCluster_ContainerProviderProperty struct { // `CfnVirtualCluster.ContainerProviderProperty.Id`. Id *string `json:"id"` // `CfnVirtualCluster.ContainerProviderProperty.Info`. Info interface{} `json:"info"` // `CfnVirtualCluster.ContainerProviderProperty.Type`. Type *string `json:"type"` }
TODO: EXAMPLE
type CfnVirtualCluster_EksInfoProperty ¶
type CfnVirtualCluster_EksInfoProperty struct { // `CfnVirtualCluster.EksInfoProperty.Namespace`. Namespace *string `json:"namespace"` }
TODO: EXAMPLE