Interface CfnApplicationInferenceProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInferenceProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:05.064Z")
@Stability(Stable)
public interface CfnApplicationInferenceProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplicationInferenceProfile.
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.bedrock.*;
CfnApplicationInferenceProfileProps cfnApplicationInferenceProfileProps = CfnApplicationInferenceProfileProps.builder()
.inferenceProfileName("inferenceProfileName")
// the properties below are optional
.description("description")
.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 forCfnApplicationInferenceProfilePropsstatic final classAn implementation forCfnApplicationInferenceProfileProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInferenceProfileName
- See Also:
-
getDescription
Description of the inference profile.- See Also:
-
getModelSource
Various ways to encode a list of models in a CreateInferenceProfile request.- See Also:
-
getTags
List of Tags.- See Also:
-
builder
-