Interface CfnApplicationInferenceProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInferenceProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.432Z")
@Stability(Stable)
public interface CfnApplicationInferenceProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationInferenceProfilePropsMixin.
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.bedrock.*;
CfnApplicationInferenceProfileMixinProps cfnApplicationInferenceProfileMixinProps = CfnApplicationInferenceProfileMixinProps.builder()
.description("description")
.inferenceProfileName("inferenceProfileName")
.modelSource(InferenceProfileModelSourceProperty.builder()
.copyFrom("copyFrom")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationInferenceProfileMixinPropsstatic final classAn implementation forCfnApplicationInferenceProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the inference profile.default StringThe name of the inference profile.default ObjectContains configurations for the inference profile to copy as the resource.getTags()A list of tags associated with the inference profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the inference profile.- See Also:
-
getInferenceProfileName
The name of the inference profile.- See Also:
-
getModelSource
Contains configurations for the inference profile to copy as the resource.Returns union: either
IResolvableorCfnApplicationInferenceProfilePropsMixin.InferenceProfileModelSourceProperty- See Also:
-
getTags
A list of tags associated with the inference profile.- See Also:
-
builder
-