CfnTenantProps

class aws_cdk.aws_ses.CfnTenantProps(*, tenant_name, resource_associations=None, tags=None)

Bases: object

Properties for defining a CfnTenant.

Parameters:
  • tenant_name (str) – The name of a tenant. The name can contain up to 64 alphanumeric characters, including letters, numbers, hyphens (-) and underscores (_) only.

  • resource_associations (Union[IResolvable, Sequence[Union[IResolvable, ResourceAssociationProperty, Dict[str, Any]]], None]) – The list of resources to associate with the tenant.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of objects that define the tags (keys and values) associated with the tenant.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ses as ses

cfn_tenant_props = ses.CfnTenantProps(
    tenant_name="tenantName",

    # the properties below are optional
    resource_associations=[ses.CfnTenant.ResourceAssociationProperty(
        resource_arn="resourceArn"
    )],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

resource_associations

The list of resources to associate with the tenant.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-resourceassociations

tags

An array of objects that define the tags (keys and values) associated with the tenant.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-tags

tenant_name

The name of a tenant.

The name can contain up to 64 alphanumeric characters, including letters, numbers, hyphens (-) and underscores (_) only.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-tenantname