Class CfnAppBlockBuilder
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.appstream.CfnAppBlockBuilder
- All Implemented Interfaces:
IInspectable
,ITaggableV2
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:50:53.082Z")
@Stability(Stable)
public class CfnAppBlockBuilder
extends CfnResource
implements IInspectable, ITaggableV2
Creates an app block builder.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appstream.*; CfnAppBlockBuilder cfnAppBlockBuilder = CfnAppBlockBuilder.Builder.create(this, "MyCfnAppBlockBuilder") .instanceType("instanceType") .name("name") .platform("platform") .vpcConfig(VpcConfigProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build()) // the properties below are optional .accessEndpoints(List.of(AccessEndpointProperty.builder() .endpointType("endpointType") .vpceId("vpceId") .build())) .appBlockArns(List.of("appBlockArns")) .description("description") .displayName("displayName") .enableDefaultInternetAccess(false) .iamRoleArn("iamRoleArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0.static final class
A fluent builder forCfnAppBlockBuilder
.static interface
Describes VPC configuration information for fleets and image builders.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnAppBlockBuilder
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnAppBlockBuilder
(software.amazon.jsii.JsiiObjectRef objRef) CfnAppBlockBuilder
(software.constructs.Construct scope, String id, CfnAppBlockBuilderProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe access endpoints of the app block builder.The ARN of the app block.The ARN of the app block builder.The time when the app block builder was created.Tag Manager which manages the tags for this resource.The description of the app block builder.The display name of the app block builder.Indicates whether default internet access is enabled for the app block builder.The ARN of the IAM role that is applied to the app block builder.The instance type of the app block builder.getName()
The name of the app block builder.The platform of the app block builder.getTags()
The tags of the app block builder.The VPC configuration for the app block builder.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAccessEndpoints
(List<Object> value) The access endpoints of the app block builder.void
setAccessEndpoints
(IResolvable value) The access endpoints of the app block builder.void
setAppBlockArns
(List<String> value) The ARN of the app block.void
setDescription
(String value) The description of the app block builder.void
setDisplayName
(String value) The display name of the app block builder.void
Indicates whether default internet access is enabled for the app block builder.void
Indicates whether default internet access is enabled for the app block builder.void
setIamRoleArn
(String value) The ARN of the IAM role that is applied to the app block builder.void
setInstanceType
(String value) The instance type of the app block builder.void
The name of the app block builder.void
setPlatform
(String value) The platform of the app block builder.void
The tags of the app block builder.void
setVpcConfig
(IResolvable value) The VPC configuration for the app block builder.void
The VPC configuration for the app block builder.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnAppBlockBuilder
protected CfnAppBlockBuilder(software.amazon.jsii.JsiiObjectRef objRef) -
CfnAppBlockBuilder
protected CfnAppBlockBuilder(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnAppBlockBuilder
@Stability(Stable) public CfnAppBlockBuilder(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAppBlockBuilderProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrArn
The ARN of the app block builder. -
getAttrCreatedTime
The time when the app block builder was created. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManager
in interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getInstanceType
The instance type of the app block builder. -
setInstanceType
The instance type of the app block builder. -
getName
The name of the app block builder. -
setName
The name of the app block builder. -
getPlatform
The platform of the app block builder. -
setPlatform
The platform of the app block builder. -
getVpcConfig
The VPC configuration for the app block builder. -
setVpcConfig
The VPC configuration for the app block builder. -
setVpcConfig
The VPC configuration for the app block builder. -
getAccessEndpoints
The access endpoints of the app block builder. -
setAccessEndpoints
The access endpoints of the app block builder. -
setAccessEndpoints
The access endpoints of the app block builder. -
getAppBlockArns
The ARN of the app block. -
setAppBlockArns
The ARN of the app block. -
getDescription
The description of the app block builder. -
setDescription
The description of the app block builder. -
getDisplayName
The display name of the app block builder. -
setDisplayName
The display name of the app block builder. -
getEnableDefaultInternetAccess
Indicates whether default internet access is enabled for the app block builder. -
setEnableDefaultInternetAccess
Indicates whether default internet access is enabled for the app block builder. -
setEnableDefaultInternetAccess
Indicates whether default internet access is enabled for the app block builder. -
getIamRoleArn
The ARN of the IAM role that is applied to the app block builder. -
setIamRoleArn
The ARN of the IAM role that is applied to the app block builder. -
getTags
The tags of the app block builder. -
setTags
The tags of the app block builder.
-