Interface CfnTenantMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTenantMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.582Z")
@Stability(Stable)
public interface CfnTenantMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTenantPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
CfnTenantMixinProps cfnTenantMixinProps = CfnTenantMixinProps.builder()
.resourceAssociations(List.of(ResourceAssociationProperty.builder()
.resourceArn("resourceArn")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.tenantName("tenantName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTenantMixinPropsstatic final classAn implementation forCfnTenantMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTenantMixinProps.Builderbuilder()default ObjectThe list of resources to associate with the tenant.getTags()An array of objects that define the tags (keys and values) associated with the tenant.default StringThe name of a tenant.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceAssociations
The list of resources to associate with the tenant.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTenantPropsMixin.ResourceAssociationProperty>- See Also:
-
getTags
An array of objects that define the tags (keys and values) associated with the tenant.- See Also:
-
getTenantName
The name of a tenant.The name can contain up to 64 alphanumeric characters, including letters, numbers, hyphens (-) and underscores (_) only.
- See Also:
-
builder
- Returns:
- a
CfnTenantMixinProps.BuilderofCfnTenantMixinProps
-