CfnHubMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnHubMixinProps(*, hub_description=None, hub_display_name=None, hub_name=None, hub_search_keywords=None, s3_storage_config=None, tags=None)
Bases:
objectProperties for CfnHubPropsMixin.
- Parameters:
hub_description (
Optional[str]) – A description of the hub.hub_display_name (
Optional[str]) – The display name of the hub.hub_name (
Optional[str]) – The name of the hub.hub_search_keywords (
Optional[Sequence[str]]) – The searchable keywords for the hub.s3_storage_config (
Union[IResolvable,S3StorageConfigProperty,Dict[str,Any],None]) – The Amazon S3 storage configuration for the hub.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags to associate with the hub.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-hub.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.cfn_property_mixins import aws_sagemaker as sagemaker cfn_hub_mixin_props = sagemaker.CfnHubMixinProps( hub_description="hubDescription", hub_display_name="hubDisplayName", hub_name="hubName", hub_search_keywords=["hubSearchKeywords"], s3_storage_config=sagemaker.CfnHubPropsMixin.S3StorageConfigProperty( s3_output_path="s3OutputPath" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- hub_description
A description of the hub.
- hub_display_name
The display name of the hub.
- hub_name
The name of the hub.
- hub_search_keywords
The searchable keywords for the hub.
- s3_storage_config
The Amazon S3 storage configuration for the hub.
- tags
Tags to associate with the hub.