Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=sfn.aws.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type Activity
- func (in *Activity) DeepCopy() *Activity
- func (in *Activity) DeepCopyInto(out *Activity)
- func (in *Activity) DeepCopyObject() runtime.Object
- func (mg *Activity) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Activity) GetConnectionDetailsMapping() map[string]string
- func (mg *Activity) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Activity) GetID() string
- func (tr *Activity) GetInitParameters() (map[string]any, error)
- func (mg *Activity) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Activity) GetObservation() (map[string]any, error)
- func (tr *Activity) GetParameters() (map[string]any, error)
- func (mg *Activity) GetProviderConfigReference() *xpv1.Reference
- func (mg *Activity) GetProviderReference() *xpv1.Reference
- func (mg *Activity) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Activity) GetTerraformResourceType() string
- func (tr *Activity) GetTerraformSchemaVersion() int
- func (mg *Activity) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Activity) LateInitialize(attrs []byte) (bool, error)
- func (mg *Activity) SetConditions(c ...xpv1.Condition)
- func (mg *Activity) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Activity) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Activity) SetObservation(obs map[string]any) error
- func (tr *Activity) SetParameters(params map[string]any) error
- func (mg *Activity) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Activity) SetProviderReference(r *xpv1.Reference)
- func (mg *Activity) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Activity) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ActivityInitParameters
- type ActivityList
- type ActivityObservation
- type ActivityParameters
- type ActivitySpec
- type ActivityStatus
- type LoggingConfigurationInitParameters
- type LoggingConfigurationObservation
- type LoggingConfigurationParameters
- type StateMachine
- func (in *StateMachine) DeepCopy() *StateMachine
- func (in *StateMachine) DeepCopyInto(out *StateMachine)
- func (in *StateMachine) DeepCopyObject() runtime.Object
- func (mg *StateMachine) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *StateMachine) GetConnectionDetailsMapping() map[string]string
- func (mg *StateMachine) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *StateMachine) GetID() string
- func (tr *StateMachine) GetInitParameters() (map[string]any, error)
- func (mg *StateMachine) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *StateMachine) GetObservation() (map[string]any, error)
- func (tr *StateMachine) GetParameters() (map[string]any, error)
- func (mg *StateMachine) GetProviderConfigReference() *xpv1.Reference
- func (mg *StateMachine) GetProviderReference() *xpv1.Reference
- func (mg *StateMachine) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *StateMachine) GetTerraformResourceType() string
- func (tr *StateMachine) GetTerraformSchemaVersion() int
- func (mg *StateMachine) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *StateMachine) LateInitialize(attrs []byte) (bool, error)
- func (mg *StateMachine) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *StateMachine) SetConditions(c ...xpv1.Condition)
- func (mg *StateMachine) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *StateMachine) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *StateMachine) SetObservation(obs map[string]any) error
- func (tr *StateMachine) SetParameters(params map[string]any) error
- func (mg *StateMachine) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *StateMachine) SetProviderReference(r *xpv1.Reference)
- func (mg *StateMachine) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *StateMachine) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type StateMachineInitParameters
- type StateMachineList
- type StateMachineObservation
- type StateMachineParameters
- type StateMachineSpec
- type StateMachineStatus
- type TracingConfigurationInitParameters
- type TracingConfigurationObservation
- type TracingConfigurationParameters
Constants ¶
const ( CRDGroup = "sfn.aws.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( Activity_Kind = "Activity" Activity_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Activity_Kind}.String() Activity_KindAPIVersion = Activity_Kind + "." + CRDGroupVersion.String() Activity_GroupVersionKind = CRDGroupVersion.WithKind(Activity_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( StateMachine_Kind = "StateMachine" StateMachine_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: StateMachine_Kind}.String() StateMachine_KindAPIVersion = StateMachine_Kind + "." + CRDGroupVersion.String() StateMachine_GroupVersionKind = CRDGroupVersion.WithKind(StateMachine_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type Activity ¶
type Activity struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ActivitySpec `json:"spec"` Status ActivityStatus `json:"status,omitempty"` }
Activity is the Schema for the Activitys API. Provides a Step Function Activity resource. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*Activity) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Activity.
func (*Activity) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Activity) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Activity) GetCondition ¶
func (mg *Activity) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Activity.
func (*Activity) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Activity
func (*Activity) GetDeletionPolicy ¶
func (mg *Activity) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Activity.
func (*Activity) GetInitParameters ¶ added in v0.38.0
GetInitParameters of this Activity
func (*Activity) GetManagementPolicies ¶ added in v0.38.0
func (mg *Activity) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Activity.
func (*Activity) GetObservation ¶
GetObservation of this Activity
func (*Activity) GetParameters ¶
GetParameters of this Activity
func (*Activity) GetProviderConfigReference ¶
GetProviderConfigReference of this Activity.
func (*Activity) GetProviderReference ¶
GetProviderReference of this Activity. Deprecated: Use GetProviderConfigReference.
func (*Activity) GetPublishConnectionDetailsTo ¶
func (mg *Activity) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Activity.
func (*Activity) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Activity
func (*Activity) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Activity) GetWriteConnectionSecretToReference ¶
func (mg *Activity) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Activity.
func (*Activity) LateInitialize ¶
LateInitialize this Activity using its observed tfState. returns True if there are any spec changes for the resource.
func (*Activity) SetConditions ¶
SetConditions of this Activity.
func (*Activity) SetDeletionPolicy ¶
func (mg *Activity) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Activity.
func (*Activity) SetManagementPolicies ¶ added in v0.38.0
func (mg *Activity) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Activity.
func (*Activity) SetObservation ¶
SetObservation for this Activity
func (*Activity) SetParameters ¶
SetParameters for this Activity
func (*Activity) SetProviderConfigReference ¶
SetProviderConfigReference of this Activity.
func (*Activity) SetProviderReference ¶
SetProviderReference of this Activity. Deprecated: Use SetProviderConfigReference.
func (*Activity) SetPublishConnectionDetailsTo ¶
func (mg *Activity) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Activity.
func (*Activity) SetWriteConnectionSecretToReference ¶
func (mg *Activity) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Activity.
type ActivityInitParameters ¶ added in v0.38.0
type ActivityInitParameters struct { // Key-value map of resource tags. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ActivityInitParameters) DeepCopy ¶ added in v0.38.0
func (in *ActivityInitParameters) DeepCopy() *ActivityInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityInitParameters.
func (*ActivityInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *ActivityInitParameters) DeepCopyInto(out *ActivityInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActivityList ¶
type ActivityList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Activity `json:"items"` }
ActivityList contains a list of Activitys
func (*ActivityList) DeepCopy ¶
func (in *ActivityList) DeepCopy() *ActivityList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityList.
func (*ActivityList) DeepCopyInto ¶
func (in *ActivityList) DeepCopyInto(out *ActivityList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ActivityList) DeepCopyObject ¶
func (in *ActivityList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ActivityList) GetItems ¶
func (l *ActivityList) GetItems() []resource.Managed
GetItems of this ActivityList.
type ActivityObservation ¶
type ActivityObservation struct { // The date the activity was created. CreationDate *string `json:"creationDate,omitempty" tf:"creation_date,omitempty"` // The Amazon Resource Name (ARN) that identifies the created activity. ID *string `json:"id,omitempty" tf:"id,omitempty"` // Key-value map of resource tags. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` }
func (*ActivityObservation) DeepCopy ¶
func (in *ActivityObservation) DeepCopy() *ActivityObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityObservation.
func (*ActivityObservation) DeepCopyInto ¶
func (in *ActivityObservation) DeepCopyInto(out *ActivityObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActivityParameters ¶
type ActivityParameters struct { // Region is the region you'd like your resource to be created in. // +upjet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // Key-value map of resource tags. // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ActivityParameters) DeepCopy ¶
func (in *ActivityParameters) DeepCopy() *ActivityParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityParameters.
func (*ActivityParameters) DeepCopyInto ¶
func (in *ActivityParameters) DeepCopyInto(out *ActivityParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActivitySpec ¶
type ActivitySpec struct { v1.ResourceSpec `json:",inline"` ForProvider ActivityParameters `json:"forProvider"` // THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored // unless the relevant Crossplane feature flag is enabled, and may be // changed or removed without notice. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider ActivityInitParameters `json:"initProvider,omitempty"` }
ActivitySpec defines the desired state of Activity
func (*ActivitySpec) DeepCopy ¶
func (in *ActivitySpec) DeepCopy() *ActivitySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivitySpec.
func (*ActivitySpec) DeepCopyInto ¶
func (in *ActivitySpec) DeepCopyInto(out *ActivitySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ActivityStatus ¶
type ActivityStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ActivityObservation `json:"atProvider,omitempty"` }
ActivityStatus defines the observed state of Activity.
func (*ActivityStatus) DeepCopy ¶
func (in *ActivityStatus) DeepCopy() *ActivityStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ActivityStatus.
func (*ActivityStatus) DeepCopyInto ¶
func (in *ActivityStatus) DeepCopyInto(out *ActivityStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationInitParameters ¶ added in v0.38.0
type LoggingConfigurationInitParameters struct { // Determines whether execution data is included in your log. When set to false, data is excluded. IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationInitParameters) DeepCopy ¶ added in v0.38.0
func (in *LoggingConfigurationInitParameters) DeepCopy() *LoggingConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationInitParameters.
func (*LoggingConfigurationInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *LoggingConfigurationInitParameters) DeepCopyInto(out *LoggingConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationObservation ¶
type LoggingConfigurationObservation struct { // Determines whether execution data is included in your log. When set to false, data is excluded. IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationObservation) DeepCopy ¶
func (in *LoggingConfigurationObservation) DeepCopy() *LoggingConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationObservation.
func (*LoggingConfigurationObservation) DeepCopyInto ¶
func (in *LoggingConfigurationObservation) DeepCopyInto(out *LoggingConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LoggingConfigurationParameters ¶
type LoggingConfigurationParameters struct { // Determines whether execution data is included in your log. When set to false, data is excluded. // +kubebuilder:validation:Optional IncludeExecutionData *bool `json:"includeExecutionData,omitempty" tf:"include_execution_data,omitempty"` // Defines which category of execution history events are logged. Valid values: ALL, ERROR, FATAL, OFF // +kubebuilder:validation:Optional Level *string `json:"level,omitempty" tf:"level,omitempty"` // Amazon Resource Name (ARN) of a CloudWatch log group. Make sure the State Machine has the correct IAM policies for logging. The ARN must end with :* // +kubebuilder:validation:Optional LogDestination *string `json:"logDestination,omitempty" tf:"log_destination,omitempty"` }
func (*LoggingConfigurationParameters) DeepCopy ¶
func (in *LoggingConfigurationParameters) DeepCopy() *LoggingConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LoggingConfigurationParameters.
func (*LoggingConfigurationParameters) DeepCopyInto ¶
func (in *LoggingConfigurationParameters) DeepCopyInto(out *LoggingConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachine ¶
type StateMachine struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.definition) || has(self.initProvider.definition)",message="definition is a required parameter" Spec StateMachineSpec `json:"spec"` Status StateMachineStatus `json:"status,omitempty"` }
StateMachine is the Schema for the StateMachines API. Provides a Step Function State Machine resource. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*StateMachine) DeepCopy ¶
func (in *StateMachine) DeepCopy() *StateMachine
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachine.
func (*StateMachine) DeepCopyInto ¶
func (in *StateMachine) DeepCopyInto(out *StateMachine)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StateMachine) DeepCopyObject ¶
func (in *StateMachine) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StateMachine) GetCondition ¶
func (mg *StateMachine) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this StateMachine.
func (*StateMachine) GetConnectionDetailsMapping ¶
func (tr *StateMachine) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this StateMachine
func (*StateMachine) GetDeletionPolicy ¶
func (mg *StateMachine) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this StateMachine.
func (*StateMachine) GetID ¶
func (tr *StateMachine) GetID() string
GetID returns ID of underlying Terraform resource of this StateMachine
func (*StateMachine) GetInitParameters ¶ added in v0.38.0
func (tr *StateMachine) GetInitParameters() (map[string]any, error)
GetInitParameters of this StateMachine
func (*StateMachine) GetManagementPolicies ¶ added in v0.38.0
func (mg *StateMachine) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this StateMachine.
func (*StateMachine) GetObservation ¶
func (tr *StateMachine) GetObservation() (map[string]any, error)
GetObservation of this StateMachine
func (*StateMachine) GetParameters ¶
func (tr *StateMachine) GetParameters() (map[string]any, error)
GetParameters of this StateMachine
func (*StateMachine) GetProviderConfigReference ¶
func (mg *StateMachine) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this StateMachine.
func (*StateMachine) GetProviderReference ¶
func (mg *StateMachine) GetProviderReference() *xpv1.Reference
GetProviderReference of this StateMachine. Deprecated: Use GetProviderConfigReference.
func (*StateMachine) GetPublishConnectionDetailsTo ¶
func (mg *StateMachine) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this StateMachine.
func (*StateMachine) GetTerraformResourceType ¶
func (mg *StateMachine) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this StateMachine
func (*StateMachine) GetTerraformSchemaVersion ¶
func (tr *StateMachine) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*StateMachine) GetWriteConnectionSecretToReference ¶
func (mg *StateMachine) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this StateMachine.
func (*StateMachine) LateInitialize ¶
func (tr *StateMachine) LateInitialize(attrs []byte) (bool, error)
LateInitialize this StateMachine using its observed tfState. returns True if there are any spec changes for the resource.
func (*StateMachine) ResolveReferences ¶
ResolveReferences of this StateMachine.
func (*StateMachine) SetConditions ¶
func (mg *StateMachine) SetConditions(c ...xpv1.Condition)
SetConditions of this StateMachine.
func (*StateMachine) SetDeletionPolicy ¶
func (mg *StateMachine) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this StateMachine.
func (*StateMachine) SetManagementPolicies ¶ added in v0.38.0
func (mg *StateMachine) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this StateMachine.
func (*StateMachine) SetObservation ¶
func (tr *StateMachine) SetObservation(obs map[string]any) error
SetObservation for this StateMachine
func (*StateMachine) SetParameters ¶
func (tr *StateMachine) SetParameters(params map[string]any) error
SetParameters for this StateMachine
func (*StateMachine) SetProviderConfigReference ¶
func (mg *StateMachine) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this StateMachine.
func (*StateMachine) SetProviderReference ¶
func (mg *StateMachine) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this StateMachine. Deprecated: Use SetProviderConfigReference.
func (*StateMachine) SetPublishConnectionDetailsTo ¶
func (mg *StateMachine) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this StateMachine.
func (*StateMachine) SetWriteConnectionSecretToReference ¶
func (mg *StateMachine) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this StateMachine.
type StateMachineInitParameters ¶ added in v0.38.0
type StateMachineInitParameters struct { // The Amazon States Language definition of the state machine. Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is only valid when type is set to EXPRESS. Defaults to OFF. For more information see Logging Express Workflows and Log Levels in the AWS Step Functions User Guide. LoggingConfiguration []LoggingConfigurationInitParameters `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // Key-value map of resource tags. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Selects whether AWS X-Ray tracing is enabled. TracingConfiguration []TracingConfigurationInitParameters `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*StateMachineInitParameters) DeepCopy ¶ added in v0.38.0
func (in *StateMachineInitParameters) DeepCopy() *StateMachineInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineInitParameters.
func (*StateMachineInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *StateMachineInitParameters) DeepCopyInto(out *StateMachineInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineList ¶
type StateMachineList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []StateMachine `json:"items"` }
StateMachineList contains a list of StateMachines
func (*StateMachineList) DeepCopy ¶
func (in *StateMachineList) DeepCopy() *StateMachineList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineList.
func (*StateMachineList) DeepCopyInto ¶
func (in *StateMachineList) DeepCopyInto(out *StateMachineList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StateMachineList) DeepCopyObject ¶
func (in *StateMachineList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StateMachineList) GetItems ¶
func (l *StateMachineList) GetItems() []resource.Managed
GetItems of this StateMachineList.
type StateMachineObservation ¶
type StateMachineObservation struct { // The ARN of the state machine. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // The date the state machine was created. CreationDate *string `json:"creationDate,omitempty" tf:"creation_date,omitempty"` // The Amazon States Language definition of the state machine. Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` // The ARN of the state machine. ID *string `json:"id,omitempty" tf:"id,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is only valid when type is set to EXPRESS. Defaults to OFF. For more information see Logging Express Workflows and Log Levels in the AWS Step Functions User Guide. LoggingConfiguration []LoggingConfigurationObservation `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // The Amazon Resource Name (ARN) of the IAM role to use for this state machine. RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"` // The current status of the state machine. Either ACTIVE or DELETING. Status *string `json:"status,omitempty" tf:"status,omitempty"` // Key-value map of resource tags. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` // Selects whether AWS X-Ray tracing is enabled. TracingConfiguration []TracingConfigurationObservation `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*StateMachineObservation) DeepCopy ¶
func (in *StateMachineObservation) DeepCopy() *StateMachineObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineObservation.
func (*StateMachineObservation) DeepCopyInto ¶
func (in *StateMachineObservation) DeepCopyInto(out *StateMachineObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineParameters ¶
type StateMachineParameters struct { // The Amazon States Language definition of the state machine. // +kubebuilder:validation:Optional Definition *string `json:"definition,omitempty" tf:"definition,omitempty"` // Defines what execution history events are logged and where they are logged. The logging_configuration parameter is only valid when type is set to EXPRESS. Defaults to OFF. For more information see Logging Express Workflows and Log Levels in the AWS Step Functions User Guide. // +kubebuilder:validation:Optional LoggingConfiguration []LoggingConfigurationParameters `json:"loggingConfiguration,omitempty" tf:"logging_configuration,omitempty"` // Region is the region you'd like your resource to be created in. // +upjet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // The Amazon Resource Name (ARN) of the IAM role to use for this state machine. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/iam/v1beta1.Role // +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor() // +kubebuilder:validation:Optional RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"` // Reference to a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"` // Selector for a Role in iam to populate roleArn. // +kubebuilder:validation:Optional RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"` // Key-value map of resource tags. // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Selects whether AWS X-Ray tracing is enabled. // +kubebuilder:validation:Optional TracingConfiguration []TracingConfigurationParameters `json:"tracingConfiguration,omitempty" tf:"tracing_configuration,omitempty"` // Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created. Valid values: STANDARD, EXPRESS. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*StateMachineParameters) DeepCopy ¶
func (in *StateMachineParameters) DeepCopy() *StateMachineParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineParameters.
func (*StateMachineParameters) DeepCopyInto ¶
func (in *StateMachineParameters) DeepCopyInto(out *StateMachineParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineSpec ¶
type StateMachineSpec struct { v1.ResourceSpec `json:",inline"` ForProvider StateMachineParameters `json:"forProvider"` // THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored // unless the relevant Crossplane feature flag is enabled, and may be // changed or removed without notice. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider StateMachineInitParameters `json:"initProvider,omitempty"` }
StateMachineSpec defines the desired state of StateMachine
func (*StateMachineSpec) DeepCopy ¶
func (in *StateMachineSpec) DeepCopy() *StateMachineSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineSpec.
func (*StateMachineSpec) DeepCopyInto ¶
func (in *StateMachineSpec) DeepCopyInto(out *StateMachineSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StateMachineStatus ¶
type StateMachineStatus struct { v1.ResourceStatus `json:",inline"` AtProvider StateMachineObservation `json:"atProvider,omitempty"` }
StateMachineStatus defines the observed state of StateMachine.
func (*StateMachineStatus) DeepCopy ¶
func (in *StateMachineStatus) DeepCopy() *StateMachineStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StateMachineStatus.
func (*StateMachineStatus) DeepCopyInto ¶
func (in *StateMachineStatus) DeepCopyInto(out *StateMachineStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationInitParameters ¶ added in v0.38.0
type TracingConfigurationInitParameters struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationInitParameters) DeepCopy ¶ added in v0.38.0
func (in *TracingConfigurationInitParameters) DeepCopy() *TracingConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationInitParameters.
func (*TracingConfigurationInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *TracingConfigurationInitParameters) DeepCopyInto(out *TracingConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationObservation ¶
type TracingConfigurationObservation struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationObservation) DeepCopy ¶
func (in *TracingConfigurationObservation) DeepCopy() *TracingConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationObservation.
func (*TracingConfigurationObservation) DeepCopyInto ¶
func (in *TracingConfigurationObservation) DeepCopyInto(out *TracingConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TracingConfigurationParameters ¶
type TracingConfigurationParameters struct { // When set to true, AWS X-Ray tracing is enabled. Make sure the State Machine has the correct IAM policies for logging. See the AWS Step Functions Developer Guide for details. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TracingConfigurationParameters) DeepCopy ¶
func (in *TracingConfigurationParameters) DeepCopy() *TracingConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TracingConfigurationParameters.
func (*TracingConfigurationParameters) DeepCopyInto ¶
func (in *TracingConfigurationParameters) DeepCopyInto(out *TracingConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.