id
int32 0
167k
| repo
stringlengths 5
54
| path
stringlengths 4
155
| func_name
stringlengths 1
118
| original_string
stringlengths 52
85.5k
| language
stringclasses 1
value | code
stringlengths 52
85.5k
| code_tokens
listlengths 21
1.41k
| docstring
stringlengths 6
2.61k
| docstring_tokens
listlengths 3
215
| sha
stringlengths 40
40
| url
stringlengths 85
252
|
---|---|---|---|---|---|---|---|---|---|---|---|
2,200 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetActionOnTimeout
|
func (s *DeploymentReadyOption) SetActionOnTimeout(v string) *DeploymentReadyOption {
s.ActionOnTimeout = &v
return s
}
|
go
|
func (s *DeploymentReadyOption) SetActionOnTimeout(v string) *DeploymentReadyOption {
s.ActionOnTimeout = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentReadyOption",
")",
"SetActionOnTimeout",
"(",
"v",
"string",
")",
"*",
"DeploymentReadyOption",
"{",
"s",
".",
"ActionOnTimeout",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetActionOnTimeout sets the ActionOnTimeout field's value.
|
[
"SetActionOnTimeout",
"sets",
"the",
"ActionOnTimeout",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7294-L7297
|
2,201 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetWaitTimeInMinutes
|
func (s *DeploymentReadyOption) SetWaitTimeInMinutes(v int64) *DeploymentReadyOption {
s.WaitTimeInMinutes = &v
return s
}
|
go
|
func (s *DeploymentReadyOption) SetWaitTimeInMinutes(v int64) *DeploymentReadyOption {
s.WaitTimeInMinutes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentReadyOption",
")",
"SetWaitTimeInMinutes",
"(",
"v",
"int64",
")",
"*",
"DeploymentReadyOption",
"{",
"s",
".",
"WaitTimeInMinutes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetWaitTimeInMinutes sets the WaitTimeInMinutes field's value.
|
[
"SetWaitTimeInMinutes",
"sets",
"the",
"WaitTimeInMinutes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7300-L7303
|
2,202 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentTargetType
|
func (s *DeploymentTarget) SetDeploymentTargetType(v string) *DeploymentTarget {
s.DeploymentTargetType = &v
return s
}
|
go
|
func (s *DeploymentTarget) SetDeploymentTargetType(v string) *DeploymentTarget {
s.DeploymentTargetType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentTarget",
")",
"SetDeploymentTargetType",
"(",
"v",
"string",
")",
"*",
"DeploymentTarget",
"{",
"s",
".",
"DeploymentTargetType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentTargetType sets the DeploymentTargetType field's value.
|
[
"SetDeploymentTargetType",
"sets",
"the",
"DeploymentTargetType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7370-L7373
|
2,203 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetEcsTarget
|
func (s *DeploymentTarget) SetEcsTarget(v *ECSTarget) *DeploymentTarget {
s.EcsTarget = v
return s
}
|
go
|
func (s *DeploymentTarget) SetEcsTarget(v *ECSTarget) *DeploymentTarget {
s.EcsTarget = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentTarget",
")",
"SetEcsTarget",
"(",
"v",
"*",
"ECSTarget",
")",
"*",
"DeploymentTarget",
"{",
"s",
".",
"EcsTarget",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEcsTarget sets the EcsTarget field's value.
|
[
"SetEcsTarget",
"sets",
"the",
"EcsTarget",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7376-L7379
|
2,204 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceTarget
|
func (s *DeploymentTarget) SetInstanceTarget(v *InstanceTarget) *DeploymentTarget {
s.InstanceTarget = v
return s
}
|
go
|
func (s *DeploymentTarget) SetInstanceTarget(v *InstanceTarget) *DeploymentTarget {
s.InstanceTarget = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentTarget",
")",
"SetInstanceTarget",
"(",
"v",
"*",
"InstanceTarget",
")",
"*",
"DeploymentTarget",
"{",
"s",
".",
"InstanceTarget",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceTarget sets the InstanceTarget field's value.
|
[
"SetInstanceTarget",
"sets",
"the",
"InstanceTarget",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7382-L7385
|
2,205 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLambdaTarget
|
func (s *DeploymentTarget) SetLambdaTarget(v *LambdaTarget) *DeploymentTarget {
s.LambdaTarget = v
return s
}
|
go
|
func (s *DeploymentTarget) SetLambdaTarget(v *LambdaTarget) *DeploymentTarget {
s.LambdaTarget = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeploymentTarget",
")",
"SetLambdaTarget",
"(",
"v",
"*",
"LambdaTarget",
")",
"*",
"DeploymentTarget",
"{",
"s",
".",
"LambdaTarget",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLambdaTarget sets the LambdaTarget field's value.
|
[
"SetLambdaTarget",
"sets",
"the",
"LambdaTarget",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7388-L7391
|
2,206 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLogTail
|
func (s *Diagnostics) SetLogTail(v string) *Diagnostics {
s.LogTail = &v
return s
}
|
go
|
func (s *Diagnostics) SetLogTail(v string) *Diagnostics {
s.LogTail = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Diagnostics",
")",
"SetLogTail",
"(",
"v",
"string",
")",
"*",
"Diagnostics",
"{",
"s",
".",
"LogTail",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLogTail sets the LogTail field's value.
|
[
"SetLogTail",
"sets",
"the",
"LogTail",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7497-L7500
|
2,207 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetScriptName
|
func (s *Diagnostics) SetScriptName(v string) *Diagnostics {
s.ScriptName = &v
return s
}
|
go
|
func (s *Diagnostics) SetScriptName(v string) *Diagnostics {
s.ScriptName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Diagnostics",
")",
"SetScriptName",
"(",
"v",
"string",
")",
"*",
"Diagnostics",
"{",
"s",
".",
"ScriptName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetScriptName sets the ScriptName field's value.
|
[
"SetScriptName",
"sets",
"the",
"ScriptName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7509-L7512
|
2,208 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetEc2TagSetList
|
func (s *EC2TagSet) SetEc2TagSetList(v [][]*EC2TagFilter) *EC2TagSet {
s.Ec2TagSetList = v
return s
}
|
go
|
func (s *EC2TagSet) SetEc2TagSetList(v [][]*EC2TagFilter) *EC2TagSet {
s.Ec2TagSetList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EC2TagSet",
")",
"SetEc2TagSetList",
"(",
"v",
"[",
"]",
"[",
"]",
"*",
"EC2TagFilter",
")",
"*",
"EC2TagSet",
"{",
"s",
".",
"Ec2TagSetList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEc2TagSetList sets the Ec2TagSetList field's value.
|
[
"SetEc2TagSetList",
"sets",
"the",
"Ec2TagSetList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7583-L7586
|
2,209 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTaskSetsInfo
|
func (s *ECSTarget) SetTaskSetsInfo(v []*ECSTaskSet) *ECSTarget {
s.TaskSetsInfo = v
return s
}
|
go
|
func (s *ECSTarget) SetTaskSetsInfo(v []*ECSTaskSet) *ECSTarget {
s.TaskSetsInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ECSTarget",
")",
"SetTaskSetsInfo",
"(",
"v",
"[",
"]",
"*",
"ECSTaskSet",
")",
"*",
"ECSTarget",
"{",
"s",
".",
"TaskSetsInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTaskSetsInfo sets the TaskSetsInfo field's value.
|
[
"SetTaskSetsInfo",
"sets",
"the",
"TaskSetsInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7696-L7699
|
2,210 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetIdentifer
|
func (s *ECSTaskSet) SetIdentifer(v string) *ECSTaskSet {
s.Identifer = &v
return s
}
|
go
|
func (s *ECSTaskSet) SetIdentifer(v string) *ECSTaskSet {
s.Identifer = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ECSTaskSet",
")",
"SetIdentifer",
"(",
"v",
"string",
")",
"*",
"ECSTaskSet",
"{",
"s",
".",
"Identifer",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIdentifer sets the Identifer field's value.
|
[
"SetIdentifer",
"sets",
"the",
"Identifer",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7768-L7771
|
2,211 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTargetGroup
|
func (s *ECSTaskSet) SetTargetGroup(v *TargetGroupInfo) *ECSTaskSet {
s.TargetGroup = v
return s
}
|
go
|
func (s *ECSTaskSet) SetTargetGroup(v *TargetGroupInfo) *ECSTaskSet {
s.TargetGroup = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ECSTaskSet",
")",
"SetTargetGroup",
"(",
"v",
"*",
"TargetGroupInfo",
")",
"*",
"ECSTaskSet",
"{",
"s",
".",
"TargetGroup",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTargetGroup sets the TargetGroup field's value.
|
[
"SetTargetGroup",
"sets",
"the",
"TargetGroup",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7792-L7795
|
2,212 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTaskSetLabel
|
func (s *ECSTaskSet) SetTaskSetLabel(v string) *ECSTaskSet {
s.TaskSetLabel = &v
return s
}
|
go
|
func (s *ECSTaskSet) SetTaskSetLabel(v string) *ECSTaskSet {
s.TaskSetLabel = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ECSTaskSet",
")",
"SetTaskSetLabel",
"(",
"v",
"string",
")",
"*",
"ECSTaskSet",
"{",
"s",
".",
"TaskSetLabel",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTaskSetLabel sets the TaskSetLabel field's value.
|
[
"SetTaskSetLabel",
"sets",
"the",
"TaskSetLabel",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7798-L7801
|
2,213 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTrafficWeight
|
func (s *ECSTaskSet) SetTrafficWeight(v float64) *ECSTaskSet {
s.TrafficWeight = &v
return s
}
|
go
|
func (s *ECSTaskSet) SetTrafficWeight(v float64) *ECSTaskSet {
s.TrafficWeight = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ECSTaskSet",
")",
"SetTrafficWeight",
"(",
"v",
"float64",
")",
"*",
"ECSTaskSet",
"{",
"s",
".",
"TrafficWeight",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTrafficWeight sets the TrafficWeight field's value.
|
[
"SetTrafficWeight",
"sets",
"the",
"TrafficWeight",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7804-L7807
|
2,214 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetFirstUsedTime
|
func (s *GenericRevisionInfo) SetFirstUsedTime(v time.Time) *GenericRevisionInfo {
s.FirstUsedTime = &v
return s
}
|
go
|
func (s *GenericRevisionInfo) SetFirstUsedTime(v time.Time) *GenericRevisionInfo {
s.FirstUsedTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"GenericRevisionInfo",
")",
"SetFirstUsedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"GenericRevisionInfo",
"{",
"s",
".",
"FirstUsedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetFirstUsedTime sets the FirstUsedTime field's value.
|
[
"SetFirstUsedTime",
"sets",
"the",
"FirstUsedTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7954-L7957
|
2,215 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLastUsedTime
|
func (s *GenericRevisionInfo) SetLastUsedTime(v time.Time) *GenericRevisionInfo {
s.LastUsedTime = &v
return s
}
|
go
|
func (s *GenericRevisionInfo) SetLastUsedTime(v time.Time) *GenericRevisionInfo {
s.LastUsedTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"GenericRevisionInfo",
")",
"SetLastUsedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"GenericRevisionInfo",
"{",
"s",
".",
"LastUsedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLastUsedTime sets the LastUsedTime field's value.
|
[
"SetLastUsedTime",
"sets",
"the",
"LastUsedTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L7960-L7963
|
2,216 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRevisionInfo
|
func (s *GetApplicationRevisionOutput) SetRevisionInfo(v *GenericRevisionInfo) *GetApplicationRevisionOutput {
s.RevisionInfo = v
return s
}
|
go
|
func (s *GetApplicationRevisionOutput) SetRevisionInfo(v *GenericRevisionInfo) *GetApplicationRevisionOutput {
s.RevisionInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetApplicationRevisionOutput",
")",
"SetRevisionInfo",
"(",
"v",
"*",
"GenericRevisionInfo",
")",
"*",
"GetApplicationRevisionOutput",
"{",
"s",
".",
"RevisionInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRevisionInfo sets the RevisionInfo field's value.
|
[
"SetRevisionInfo",
"sets",
"the",
"RevisionInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8131-L8134
|
2,217 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentConfigInfo
|
func (s *GetDeploymentConfigOutput) SetDeploymentConfigInfo(v *DeploymentConfigInfo) *GetDeploymentConfigOutput {
s.DeploymentConfigInfo = v
return s
}
|
go
|
func (s *GetDeploymentConfigOutput) SetDeploymentConfigInfo(v *DeploymentConfigInfo) *GetDeploymentConfigOutput {
s.DeploymentConfigInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetDeploymentConfigOutput",
")",
"SetDeploymentConfigInfo",
"(",
"v",
"*",
"DeploymentConfigInfo",
")",
"*",
"GetDeploymentConfigOutput",
"{",
"s",
".",
"DeploymentConfigInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentConfigInfo sets the DeploymentConfigInfo field's value.
|
[
"SetDeploymentConfigInfo",
"sets",
"the",
"DeploymentConfigInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8198-L8201
|
2,218 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentGroupInfo
|
func (s *GetDeploymentGroupOutput) SetDeploymentGroupInfo(v *DeploymentGroupInfo) *GetDeploymentGroupOutput {
s.DeploymentGroupInfo = v
return s
}
|
go
|
func (s *GetDeploymentGroupOutput) SetDeploymentGroupInfo(v *DeploymentGroupInfo) *GetDeploymentGroupOutput {
s.DeploymentGroupInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetDeploymentGroupOutput",
")",
"SetDeploymentGroupInfo",
"(",
"v",
"*",
"DeploymentGroupInfo",
")",
"*",
"GetDeploymentGroupOutput",
"{",
"s",
".",
"DeploymentGroupInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentGroupInfo sets the DeploymentGroupInfo field's value.
|
[
"SetDeploymentGroupInfo",
"sets",
"the",
"DeploymentGroupInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8282-L8285
|
2,219 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceSummary
|
func (s *GetDeploymentInstanceOutput) SetInstanceSummary(v *InstanceSummary) *GetDeploymentInstanceOutput {
s.InstanceSummary = v
return s
}
|
go
|
func (s *GetDeploymentInstanceOutput) SetInstanceSummary(v *InstanceSummary) *GetDeploymentInstanceOutput {
s.InstanceSummary = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetDeploymentInstanceOutput",
")",
"SetInstanceSummary",
"(",
"v",
"*",
"InstanceSummary",
")",
"*",
"GetDeploymentInstanceOutput",
"{",
"s",
".",
"InstanceSummary",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceSummary sets the InstanceSummary field's value.
|
[
"SetInstanceSummary",
"sets",
"the",
"InstanceSummary",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8398-L8401
|
2,220 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentInfo
|
func (s *GetDeploymentOutput) SetDeploymentInfo(v *DeploymentInfo) *GetDeploymentOutput {
s.DeploymentInfo = v
return s
}
|
go
|
func (s *GetDeploymentOutput) SetDeploymentInfo(v *DeploymentInfo) *GetDeploymentOutput {
s.DeploymentInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetDeploymentOutput",
")",
"SetDeploymentInfo",
"(",
"v",
"*",
"DeploymentInfo",
")",
"*",
"GetDeploymentOutput",
"{",
"s",
".",
"DeploymentInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentInfo sets the DeploymentInfo field's value.
|
[
"SetDeploymentInfo",
"sets",
"the",
"DeploymentInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8422-L8425
|
2,221 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentTarget
|
func (s *GetDeploymentTargetOutput) SetDeploymentTarget(v *DeploymentTarget) *GetDeploymentTargetOutput {
s.DeploymentTarget = v
return s
}
|
go
|
func (s *GetDeploymentTargetOutput) SetDeploymentTarget(v *DeploymentTarget) *GetDeploymentTargetOutput {
s.DeploymentTarget = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetDeploymentTargetOutput",
")",
"SetDeploymentTarget",
"(",
"v",
"*",
"DeploymentTarget",
")",
"*",
"GetDeploymentTargetOutput",
"{",
"s",
".",
"DeploymentTarget",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentTarget sets the DeploymentTarget field's value.
|
[
"SetDeploymentTarget",
"sets",
"the",
"DeploymentTarget",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8480-L8483
|
2,222 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceInfo
|
func (s *GetOnPremisesInstanceOutput) SetInstanceInfo(v *InstanceInfo) *GetOnPremisesInstanceOutput {
s.InstanceInfo = v
return s
}
|
go
|
func (s *GetOnPremisesInstanceOutput) SetInstanceInfo(v *InstanceInfo) *GetOnPremisesInstanceOutput {
s.InstanceInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetOnPremisesInstanceOutput",
")",
"SetInstanceInfo",
"(",
"v",
"*",
"InstanceInfo",
")",
"*",
"GetOnPremisesInstanceOutput",
"{",
"s",
".",
"InstanceInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceInfo sets the InstanceInfo field's value.
|
[
"SetInstanceInfo",
"sets",
"the",
"InstanceInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8543-L8546
|
2,223 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeregisterTime
|
func (s *InstanceInfo) SetDeregisterTime(v time.Time) *InstanceInfo {
s.DeregisterTime = &v
return s
}
|
go
|
func (s *InstanceInfo) SetDeregisterTime(v time.Time) *InstanceInfo {
s.DeregisterTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceInfo",
")",
"SetDeregisterTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"InstanceInfo",
"{",
"s",
".",
"DeregisterTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeregisterTime sets the DeregisterTime field's value.
|
[
"SetDeregisterTime",
"sets",
"the",
"DeregisterTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8654-L8657
|
2,224 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceLabel
|
func (s *InstanceTarget) SetInstanceLabel(v string) *InstanceTarget {
s.InstanceLabel = &v
return s
}
|
go
|
func (s *InstanceTarget) SetInstanceLabel(v string) *InstanceTarget {
s.InstanceLabel = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceTarget",
")",
"SetInstanceLabel",
"(",
"v",
"string",
")",
"*",
"InstanceTarget",
"{",
"s",
".",
"InstanceLabel",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceLabel sets the InstanceLabel field's value.
|
[
"SetInstanceLabel",
"sets",
"the",
"InstanceLabel",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L8828-L8831
|
2,225 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDiagnostics
|
func (s *LifecycleEvent) SetDiagnostics(v *Diagnostics) *LifecycleEvent {
s.Diagnostics = v
return s
}
|
go
|
func (s *LifecycleEvent) SetDiagnostics(v *Diagnostics) *LifecycleEvent {
s.Diagnostics = v
return s
}
|
[
"func",
"(",
"s",
"*",
"LifecycleEvent",
")",
"SetDiagnostics",
"(",
"v",
"*",
"Diagnostics",
")",
"*",
"LifecycleEvent",
"{",
"s",
".",
"Diagnostics",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDiagnostics sets the Diagnostics field's value.
|
[
"SetDiagnostics",
"sets",
"the",
"Diagnostics",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9030-L9033
|
2,226 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLifecycleEventName
|
func (s *LifecycleEvent) SetLifecycleEventName(v string) *LifecycleEvent {
s.LifecycleEventName = &v
return s
}
|
go
|
func (s *LifecycleEvent) SetLifecycleEventName(v string) *LifecycleEvent {
s.LifecycleEventName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"LifecycleEvent",
")",
"SetLifecycleEventName",
"(",
"v",
"string",
")",
"*",
"LifecycleEvent",
"{",
"s",
".",
"LifecycleEventName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLifecycleEventName sets the LifecycleEventName field's value.
|
[
"SetLifecycleEventName",
"sets",
"the",
"LifecycleEventName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9042-L9045
|
2,227 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetDeploymentConfigsList
|
func (s *ListDeploymentConfigsOutput) SetDeploymentConfigsList(v []*string) *ListDeploymentConfigsOutput {
s.DeploymentConfigsList = v
return s
}
|
go
|
func (s *ListDeploymentConfigsOutput) SetDeploymentConfigsList(v []*string) *ListDeploymentConfigsOutput {
s.DeploymentConfigsList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentConfigsOutput",
")",
"SetDeploymentConfigsList",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentConfigsOutput",
"{",
"s",
".",
"DeploymentConfigsList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentConfigsList sets the DeploymentConfigsList field's value.
|
[
"SetDeploymentConfigsList",
"sets",
"the",
"DeploymentConfigsList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9330-L9333
|
2,228 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceStatusFilter
|
func (s *ListDeploymentInstancesInput) SetInstanceStatusFilter(v []*string) *ListDeploymentInstancesInput {
s.InstanceStatusFilter = v
return s
}
|
go
|
func (s *ListDeploymentInstancesInput) SetInstanceStatusFilter(v []*string) *ListDeploymentInstancesInput {
s.InstanceStatusFilter = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentInstancesInput",
")",
"SetInstanceStatusFilter",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentInstancesInput",
"{",
"s",
".",
"InstanceStatusFilter",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceStatusFilter sets the InstanceStatusFilter field's value.
|
[
"SetInstanceStatusFilter",
"sets",
"the",
"InstanceStatusFilter",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9502-L9505
|
2,229 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstanceTypeFilter
|
func (s *ListDeploymentInstancesInput) SetInstanceTypeFilter(v []*string) *ListDeploymentInstancesInput {
s.InstanceTypeFilter = v
return s
}
|
go
|
func (s *ListDeploymentInstancesInput) SetInstanceTypeFilter(v []*string) *ListDeploymentInstancesInput {
s.InstanceTypeFilter = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentInstancesInput",
")",
"SetInstanceTypeFilter",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentInstancesInput",
"{",
"s",
".",
"InstanceTypeFilter",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceTypeFilter sets the InstanceTypeFilter field's value.
|
[
"SetInstanceTypeFilter",
"sets",
"the",
"InstanceTypeFilter",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9508-L9511
|
2,230 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetInstancesList
|
func (s *ListDeploymentInstancesOutput) SetInstancesList(v []*string) *ListDeploymentInstancesOutput {
s.InstancesList = v
return s
}
|
go
|
func (s *ListDeploymentInstancesOutput) SetInstancesList(v []*string) *ListDeploymentInstancesOutput {
s.InstancesList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentInstancesOutput",
")",
"SetInstancesList",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentInstancesOutput",
"{",
"s",
".",
"InstancesList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstancesList sets the InstancesList field's value.
|
[
"SetInstancesList",
"sets",
"the",
"InstancesList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9543-L9546
|
2,231 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTargetFilters
|
func (s *ListDeploymentTargetsInput) SetTargetFilters(v map[string][]*string) *ListDeploymentTargetsInput {
s.TargetFilters = v
return s
}
|
go
|
func (s *ListDeploymentTargetsInput) SetTargetFilters(v map[string][]*string) *ListDeploymentTargetsInput {
s.TargetFilters = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentTargetsInput",
")",
"SetTargetFilters",
"(",
"v",
"map",
"[",
"string",
"]",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentTargetsInput",
"{",
"s",
".",
"TargetFilters",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTargetFilters sets the TargetFilters field's value.
|
[
"SetTargetFilters",
"sets",
"the",
"TargetFilters",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9591-L9594
|
2,232 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetCreateTimeRange
|
func (s *ListDeploymentsInput) SetCreateTimeRange(v *TimeRange) *ListDeploymentsInput {
s.CreateTimeRange = v
return s
}
|
go
|
func (s *ListDeploymentsInput) SetCreateTimeRange(v *TimeRange) *ListDeploymentsInput {
s.CreateTimeRange = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentsInput",
")",
"SetCreateTimeRange",
"(",
"v",
"*",
"TimeRange",
")",
"*",
"ListDeploymentsInput",
"{",
"s",
".",
"CreateTimeRange",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCreateTimeRange sets the CreateTimeRange field's value.
|
[
"SetCreateTimeRange",
"sets",
"the",
"CreateTimeRange",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9697-L9700
|
2,233 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetIncludeOnlyStatuses
|
func (s *ListDeploymentsInput) SetIncludeOnlyStatuses(v []*string) *ListDeploymentsInput {
s.IncludeOnlyStatuses = v
return s
}
|
go
|
func (s *ListDeploymentsInput) SetIncludeOnlyStatuses(v []*string) *ListDeploymentsInput {
s.IncludeOnlyStatuses = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDeploymentsInput",
")",
"SetIncludeOnlyStatuses",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListDeploymentsInput",
"{",
"s",
".",
"IncludeOnlyStatuses",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIncludeOnlyStatuses sets the IncludeOnlyStatuses field's value.
|
[
"SetIncludeOnlyStatuses",
"sets",
"the",
"IncludeOnlyStatuses",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9709-L9712
|
2,234 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTokenNameList
|
func (s *ListGitHubAccountTokenNamesOutput) SetTokenNameList(v []*string) *ListGitHubAccountTokenNamesOutput {
s.TokenNameList = v
return s
}
|
go
|
func (s *ListGitHubAccountTokenNamesOutput) SetTokenNameList(v []*string) *ListGitHubAccountTokenNamesOutput {
s.TokenNameList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListGitHubAccountTokenNamesOutput",
")",
"SetTokenNameList",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListGitHubAccountTokenNamesOutput",
"{",
"s",
".",
"TokenNameList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTokenNameList sets the TokenNameList field's value.
|
[
"SetTokenNameList",
"sets",
"the",
"TokenNameList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9810-L9813
|
2,235 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetElbInfoList
|
func (s *LoadBalancerInfo) SetElbInfoList(v []*ELBInfo) *LoadBalancerInfo {
s.ElbInfoList = v
return s
}
|
go
|
func (s *LoadBalancerInfo) SetElbInfoList(v []*ELBInfo) *LoadBalancerInfo {
s.ElbInfoList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"LoadBalancerInfo",
")",
"SetElbInfoList",
"(",
"v",
"[",
"]",
"*",
"ELBInfo",
")",
"*",
"LoadBalancerInfo",
"{",
"s",
".",
"ElbInfoList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetElbInfoList sets the ElbInfoList field's value.
|
[
"SetElbInfoList",
"sets",
"the",
"ElbInfoList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9935-L9938
|
2,236 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTargetGroupInfoList
|
func (s *LoadBalancerInfo) SetTargetGroupInfoList(v []*TargetGroupInfo) *LoadBalancerInfo {
s.TargetGroupInfoList = v
return s
}
|
go
|
func (s *LoadBalancerInfo) SetTargetGroupInfoList(v []*TargetGroupInfo) *LoadBalancerInfo {
s.TargetGroupInfoList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"LoadBalancerInfo",
")",
"SetTargetGroupInfoList",
"(",
"v",
"[",
"]",
"*",
"TargetGroupInfo",
")",
"*",
"LoadBalancerInfo",
"{",
"s",
".",
"TargetGroupInfoList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTargetGroupInfoList sets the TargetGroupInfoList field's value.
|
[
"SetTargetGroupInfoList",
"sets",
"the",
"TargetGroupInfoList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9941-L9944
|
2,237 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTargetGroupPairInfoList
|
func (s *LoadBalancerInfo) SetTargetGroupPairInfoList(v []*TargetGroupPairInfo) *LoadBalancerInfo {
s.TargetGroupPairInfoList = v
return s
}
|
go
|
func (s *LoadBalancerInfo) SetTargetGroupPairInfoList(v []*TargetGroupPairInfo) *LoadBalancerInfo {
s.TargetGroupPairInfoList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"LoadBalancerInfo",
")",
"SetTargetGroupPairInfoList",
"(",
"v",
"[",
"]",
"*",
"TargetGroupPairInfo",
")",
"*",
"LoadBalancerInfo",
"{",
"s",
".",
"TargetGroupPairInfoList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTargetGroupPairInfoList sets the TargetGroupPairInfoList field's value.
|
[
"SetTargetGroupPairInfoList",
"sets",
"the",
"TargetGroupPairInfoList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L9947-L9950
|
2,238 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetOnPremisesTagSetList
|
func (s *OnPremisesTagSet) SetOnPremisesTagSetList(v [][]*TagFilter) *OnPremisesTagSet {
s.OnPremisesTagSetList = v
return s
}
|
go
|
func (s *OnPremisesTagSet) SetOnPremisesTagSetList(v [][]*TagFilter) *OnPremisesTagSet {
s.OnPremisesTagSetList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"OnPremisesTagSet",
")",
"SetOnPremisesTagSetList",
"(",
"v",
"[",
"]",
"[",
"]",
"*",
"TagFilter",
")",
"*",
"OnPremisesTagSet",
"{",
"s",
".",
"OnPremisesTagSetList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOnPremisesTagSetList sets the OnPremisesTagSetList field's value.
|
[
"SetOnPremisesTagSetList",
"sets",
"the",
"OnPremisesTagSetList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10031-L10034
|
2,239 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetGenericRevisionInfo
|
func (s *RevisionInfo) SetGenericRevisionInfo(v *GenericRevisionInfo) *RevisionInfo {
s.GenericRevisionInfo = v
return s
}
|
go
|
func (s *RevisionInfo) SetGenericRevisionInfo(v *GenericRevisionInfo) *RevisionInfo {
s.GenericRevisionInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionInfo",
")",
"SetGenericRevisionInfo",
"(",
"v",
"*",
"GenericRevisionInfo",
")",
"*",
"RevisionInfo",
"{",
"s",
".",
"GenericRevisionInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGenericRevisionInfo sets the GenericRevisionInfo field's value.
|
[
"SetGenericRevisionInfo",
"sets",
"the",
"GenericRevisionInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10385-L10388
|
2,240 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRevisionLocation
|
func (s *RevisionInfo) SetRevisionLocation(v *RevisionLocation) *RevisionInfo {
s.RevisionLocation = v
return s
}
|
go
|
func (s *RevisionInfo) SetRevisionLocation(v *RevisionLocation) *RevisionInfo {
s.RevisionLocation = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionInfo",
")",
"SetRevisionLocation",
"(",
"v",
"*",
"RevisionLocation",
")",
"*",
"RevisionInfo",
"{",
"s",
".",
"RevisionLocation",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRevisionLocation sets the RevisionLocation field's value.
|
[
"SetRevisionLocation",
"sets",
"the",
"RevisionLocation",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10391-L10394
|
2,241 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetAppSpecContent
|
func (s *RevisionLocation) SetAppSpecContent(v *AppSpecContent) *RevisionLocation {
s.AppSpecContent = v
return s
}
|
go
|
func (s *RevisionLocation) SetAppSpecContent(v *AppSpecContent) *RevisionLocation {
s.AppSpecContent = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionLocation",
")",
"SetAppSpecContent",
"(",
"v",
"*",
"AppSpecContent",
")",
"*",
"RevisionLocation",
"{",
"s",
".",
"AppSpecContent",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAppSpecContent sets the AppSpecContent field's value.
|
[
"SetAppSpecContent",
"sets",
"the",
"AppSpecContent",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10437-L10440
|
2,242 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetGitHubLocation
|
func (s *RevisionLocation) SetGitHubLocation(v *GitHubLocation) *RevisionLocation {
s.GitHubLocation = v
return s
}
|
go
|
func (s *RevisionLocation) SetGitHubLocation(v *GitHubLocation) *RevisionLocation {
s.GitHubLocation = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionLocation",
")",
"SetGitHubLocation",
"(",
"v",
"*",
"GitHubLocation",
")",
"*",
"RevisionLocation",
"{",
"s",
".",
"GitHubLocation",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGitHubLocation sets the GitHubLocation field's value.
|
[
"SetGitHubLocation",
"sets",
"the",
"GitHubLocation",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10443-L10446
|
2,243 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRevisionType
|
func (s *RevisionLocation) SetRevisionType(v string) *RevisionLocation {
s.RevisionType = &v
return s
}
|
go
|
func (s *RevisionLocation) SetRevisionType(v string) *RevisionLocation {
s.RevisionType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionLocation",
")",
"SetRevisionType",
"(",
"v",
"string",
")",
"*",
"RevisionLocation",
"{",
"s",
".",
"RevisionType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRevisionType sets the RevisionType field's value.
|
[
"SetRevisionType",
"sets",
"the",
"RevisionType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10449-L10452
|
2,244 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetString_
|
func (s *RevisionLocation) SetString_(v *RawString) *RevisionLocation {
s.String_ = v
return s
}
|
go
|
func (s *RevisionLocation) SetString_(v *RawString) *RevisionLocation {
s.String_ = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RevisionLocation",
")",
"SetString_",
"(",
"v",
"*",
"RawString",
")",
"*",
"RevisionLocation",
"{",
"s",
".",
"String_",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetString_ sets the String_ field's value.
|
[
"SetString_",
"sets",
"the",
"String_",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10461-L10464
|
2,245 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRollbackDeploymentId
|
func (s *RollbackInfo) SetRollbackDeploymentId(v string) *RollbackInfo {
s.RollbackDeploymentId = &v
return s
}
|
go
|
func (s *RollbackInfo) SetRollbackDeploymentId(v string) *RollbackInfo {
s.RollbackDeploymentId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"RollbackInfo",
")",
"SetRollbackDeploymentId",
"(",
"v",
"string",
")",
"*",
"RollbackInfo",
"{",
"s",
".",
"RollbackDeploymentId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRollbackDeploymentId sets the RollbackDeploymentId field's value.
|
[
"SetRollbackDeploymentId",
"sets",
"the",
"RollbackDeploymentId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10493-L10496
|
2,246 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRollbackMessage
|
func (s *RollbackInfo) SetRollbackMessage(v string) *RollbackInfo {
s.RollbackMessage = &v
return s
}
|
go
|
func (s *RollbackInfo) SetRollbackMessage(v string) *RollbackInfo {
s.RollbackMessage = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"RollbackInfo",
")",
"SetRollbackMessage",
"(",
"v",
"string",
")",
"*",
"RollbackInfo",
"{",
"s",
".",
"RollbackMessage",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRollbackMessage sets the RollbackMessage field's value.
|
[
"SetRollbackMessage",
"sets",
"the",
"RollbackMessage",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10499-L10502
|
2,247 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetRollbackTriggeringDeploymentId
|
func (s *RollbackInfo) SetRollbackTriggeringDeploymentId(v string) *RollbackInfo {
s.RollbackTriggeringDeploymentId = &v
return s
}
|
go
|
func (s *RollbackInfo) SetRollbackTriggeringDeploymentId(v string) *RollbackInfo {
s.RollbackTriggeringDeploymentId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"RollbackInfo",
")",
"SetRollbackTriggeringDeploymentId",
"(",
"v",
"string",
")",
"*",
"RollbackInfo",
"{",
"s",
".",
"RollbackTriggeringDeploymentId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRollbackTriggeringDeploymentId sets the RollbackTriggeringDeploymentId field's value.
|
[
"SetRollbackTriggeringDeploymentId",
"sets",
"the",
"RollbackTriggeringDeploymentId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10505-L10508
|
2,248 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetBundleType
|
func (s *S3Location) SetBundleType(v string) *S3Location {
s.BundleType = &v
return s
}
|
go
|
func (s *S3Location) SetBundleType(v string) *S3Location {
s.BundleType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"S3Location",
")",
"SetBundleType",
"(",
"v",
"string",
")",
"*",
"S3Location",
"{",
"s",
".",
"BundleType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetBundleType sets the BundleType field's value.
|
[
"SetBundleType",
"sets",
"the",
"BundleType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10563-L10566
|
2,249 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetAutoRollbackEnabled
|
func (s *StopDeploymentInput) SetAutoRollbackEnabled(v bool) *StopDeploymentInput {
s.AutoRollbackEnabled = &v
return s
}
|
go
|
func (s *StopDeploymentInput) SetAutoRollbackEnabled(v bool) *StopDeploymentInput {
s.AutoRollbackEnabled = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"StopDeploymentInput",
")",
"SetAutoRollbackEnabled",
"(",
"v",
"bool",
")",
"*",
"StopDeploymentInput",
"{",
"s",
".",
"AutoRollbackEnabled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAutoRollbackEnabled sets the AutoRollbackEnabled field's value.
|
[
"SetAutoRollbackEnabled",
"sets",
"the",
"AutoRollbackEnabled",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10663-L10666
|
2,250 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetProdTrafficRoute
|
func (s *TargetGroupPairInfo) SetProdTrafficRoute(v *TrafficRoute) *TargetGroupPairInfo {
s.ProdTrafficRoute = v
return s
}
|
go
|
func (s *TargetGroupPairInfo) SetProdTrafficRoute(v *TrafficRoute) *TargetGroupPairInfo {
s.ProdTrafficRoute = v
return s
}
|
[
"func",
"(",
"s",
"*",
"TargetGroupPairInfo",
")",
"SetProdTrafficRoute",
"(",
"v",
"*",
"TrafficRoute",
")",
"*",
"TargetGroupPairInfo",
"{",
"s",
".",
"ProdTrafficRoute",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetProdTrafficRoute sets the ProdTrafficRoute field's value.
|
[
"SetProdTrafficRoute",
"sets",
"the",
"ProdTrafficRoute",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10854-L10857
|
2,251 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetCanaryInterval
|
func (s *TimeBasedCanary) SetCanaryInterval(v int64) *TimeBasedCanary {
s.CanaryInterval = &v
return s
}
|
go
|
func (s *TimeBasedCanary) SetCanaryInterval(v int64) *TimeBasedCanary {
s.CanaryInterval = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"TimeBasedCanary",
")",
"SetCanaryInterval",
"(",
"v",
"int64",
")",
"*",
"TimeBasedCanary",
"{",
"s",
".",
"CanaryInterval",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCanaryInterval sets the CanaryInterval field's value.
|
[
"SetCanaryInterval",
"sets",
"the",
"CanaryInterval",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10945-L10948
|
2,252 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetCanaryPercentage
|
func (s *TimeBasedCanary) SetCanaryPercentage(v int64) *TimeBasedCanary {
s.CanaryPercentage = &v
return s
}
|
go
|
func (s *TimeBasedCanary) SetCanaryPercentage(v int64) *TimeBasedCanary {
s.CanaryPercentage = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"TimeBasedCanary",
")",
"SetCanaryPercentage",
"(",
"v",
"int64",
")",
"*",
"TimeBasedCanary",
"{",
"s",
".",
"CanaryPercentage",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCanaryPercentage sets the CanaryPercentage field's value.
|
[
"SetCanaryPercentage",
"sets",
"the",
"CanaryPercentage",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10951-L10954
|
2,253 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLinearInterval
|
func (s *TimeBasedLinear) SetLinearInterval(v int64) *TimeBasedLinear {
s.LinearInterval = &v
return s
}
|
go
|
func (s *TimeBasedLinear) SetLinearInterval(v int64) *TimeBasedLinear {
s.LinearInterval = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"TimeBasedLinear",
")",
"SetLinearInterval",
"(",
"v",
"int64",
")",
"*",
"TimeBasedLinear",
"{",
"s",
".",
"LinearInterval",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLinearInterval sets the LinearInterval field's value.
|
[
"SetLinearInterval",
"sets",
"the",
"LinearInterval",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10983-L10986
|
2,254 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetLinearPercentage
|
func (s *TimeBasedLinear) SetLinearPercentage(v int64) *TimeBasedLinear {
s.LinearPercentage = &v
return s
}
|
go
|
func (s *TimeBasedLinear) SetLinearPercentage(v int64) *TimeBasedLinear {
s.LinearPercentage = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"TimeBasedLinear",
")",
"SetLinearPercentage",
"(",
"v",
"int64",
")",
"*",
"TimeBasedLinear",
"{",
"s",
".",
"LinearPercentage",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLinearPercentage sets the LinearPercentage field's value.
|
[
"SetLinearPercentage",
"sets",
"the",
"LinearPercentage",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L10989-L10992
|
2,255 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTimeBasedCanary
|
func (s *TrafficRoutingConfig) SetTimeBasedCanary(v *TimeBasedCanary) *TrafficRoutingConfig {
s.TimeBasedCanary = v
return s
}
|
go
|
func (s *TrafficRoutingConfig) SetTimeBasedCanary(v *TimeBasedCanary) *TrafficRoutingConfig {
s.TimeBasedCanary = v
return s
}
|
[
"func",
"(",
"s",
"*",
"TrafficRoutingConfig",
")",
"SetTimeBasedCanary",
"(",
"v",
"*",
"TimeBasedCanary",
")",
"*",
"TrafficRoutingConfig",
"{",
"s",
".",
"TimeBasedCanary",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTimeBasedCanary sets the TimeBasedCanary field's value.
|
[
"SetTimeBasedCanary",
"sets",
"the",
"TimeBasedCanary",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11090-L11093
|
2,256 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTimeBasedLinear
|
func (s *TrafficRoutingConfig) SetTimeBasedLinear(v *TimeBasedLinear) *TrafficRoutingConfig {
s.TimeBasedLinear = v
return s
}
|
go
|
func (s *TrafficRoutingConfig) SetTimeBasedLinear(v *TimeBasedLinear) *TrafficRoutingConfig {
s.TimeBasedLinear = v
return s
}
|
[
"func",
"(",
"s",
"*",
"TrafficRoutingConfig",
")",
"SetTimeBasedLinear",
"(",
"v",
"*",
"TimeBasedLinear",
")",
"*",
"TrafficRoutingConfig",
"{",
"s",
".",
"TimeBasedLinear",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTimeBasedLinear sets the TimeBasedLinear field's value.
|
[
"SetTimeBasedLinear",
"sets",
"the",
"TimeBasedLinear",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11096-L11099
|
2,257 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTriggerEvents
|
func (s *TriggerConfig) SetTriggerEvents(v []*string) *TriggerConfig {
s.TriggerEvents = v
return s
}
|
go
|
func (s *TriggerConfig) SetTriggerEvents(v []*string) *TriggerConfig {
s.TriggerEvents = v
return s
}
|
[
"func",
"(",
"s",
"*",
"TriggerConfig",
")",
"SetTriggerEvents",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"TriggerConfig",
"{",
"s",
".",
"TriggerEvents",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTriggerEvents sets the TriggerEvents field's value.
|
[
"SetTriggerEvents",
"sets",
"the",
"TriggerEvents",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11133-L11136
|
2,258 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetTriggerTargetArn
|
func (s *TriggerConfig) SetTriggerTargetArn(v string) *TriggerConfig {
s.TriggerTargetArn = &v
return s
}
|
go
|
func (s *TriggerConfig) SetTriggerTargetArn(v string) *TriggerConfig {
s.TriggerTargetArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"TriggerConfig",
")",
"SetTriggerTargetArn",
"(",
"v",
"string",
")",
"*",
"TriggerConfig",
"{",
"s",
".",
"TriggerTargetArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTriggerTargetArn sets the TriggerTargetArn field's value.
|
[
"SetTriggerTargetArn",
"sets",
"the",
"TriggerTargetArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11145-L11148
|
2,259 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetNewApplicationName
|
func (s *UpdateApplicationInput) SetNewApplicationName(v string) *UpdateApplicationInput {
s.NewApplicationName = &v
return s
}
|
go
|
func (s *UpdateApplicationInput) SetNewApplicationName(v string) *UpdateApplicationInput {
s.NewApplicationName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateApplicationInput",
")",
"SetNewApplicationName",
"(",
"v",
"string",
")",
"*",
"UpdateApplicationInput",
"{",
"s",
".",
"NewApplicationName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNewApplicationName sets the NewApplicationName field's value.
|
[
"SetNewApplicationName",
"sets",
"the",
"NewApplicationName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11194-L11197
|
2,260 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetCurrentDeploymentGroupName
|
func (s *UpdateDeploymentGroupInput) SetCurrentDeploymentGroupName(v string) *UpdateDeploymentGroupInput {
s.CurrentDeploymentGroupName = &v
return s
}
|
go
|
func (s *UpdateDeploymentGroupInput) SetCurrentDeploymentGroupName(v string) *UpdateDeploymentGroupInput {
s.CurrentDeploymentGroupName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateDeploymentGroupInput",
")",
"SetCurrentDeploymentGroupName",
"(",
"v",
"string",
")",
"*",
"UpdateDeploymentGroupInput",
"{",
"s",
".",
"CurrentDeploymentGroupName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCurrentDeploymentGroupName sets the CurrentDeploymentGroupName field's value.
|
[
"SetCurrentDeploymentGroupName",
"sets",
"the",
"CurrentDeploymentGroupName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11360-L11363
|
2,261 |
aws/aws-sdk-go
|
service/codedeploy/api.go
|
SetNewDeploymentGroupName
|
func (s *UpdateDeploymentGroupInput) SetNewDeploymentGroupName(v string) *UpdateDeploymentGroupInput {
s.NewDeploymentGroupName = &v
return s
}
|
go
|
func (s *UpdateDeploymentGroupInput) SetNewDeploymentGroupName(v string) *UpdateDeploymentGroupInput {
s.NewDeploymentGroupName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateDeploymentGroupInput",
")",
"SetNewDeploymentGroupName",
"(",
"v",
"string",
")",
"*",
"UpdateDeploymentGroupInput",
"{",
"s",
".",
"NewDeploymentGroupName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNewDeploymentGroupName sets the NewDeploymentGroupName field's value.
|
[
"SetNewDeploymentGroupName",
"sets",
"the",
"NewDeploymentGroupName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/codedeploy/api.go#L11402-L11405
|
2,262 |
aws/aws-sdk-go
|
service/appstream/waiters.go
|
WaitUntilFleetStarted
|
func (c *AppStream) WaitUntilFleetStarted(input *DescribeFleetsInput) error {
return c.WaitUntilFleetStartedWithContext(aws.BackgroundContext(), input)
}
|
go
|
func (c *AppStream) WaitUntilFleetStarted(input *DescribeFleetsInput) error {
return c.WaitUntilFleetStartedWithContext(aws.BackgroundContext(), input)
}
|
[
"func",
"(",
"c",
"*",
"AppStream",
")",
"WaitUntilFleetStarted",
"(",
"input",
"*",
"DescribeFleetsInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilFleetStartedWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] |
// WaitUntilFleetStarted uses the Amazon AppStream API operation
// DescribeFleets to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned.
|
[
"WaitUntilFleetStarted",
"uses",
"the",
"Amazon",
"AppStream",
"API",
"operation",
"DescribeFleets",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appstream/waiters.go#L16-L18
|
2,263 |
aws/aws-sdk-go
|
service/appstream/waiters.go
|
WaitUntilFleetStopped
|
func (c *AppStream) WaitUntilFleetStopped(input *DescribeFleetsInput) error {
return c.WaitUntilFleetStoppedWithContext(aws.BackgroundContext(), input)
}
|
go
|
func (c *AppStream) WaitUntilFleetStopped(input *DescribeFleetsInput) error {
return c.WaitUntilFleetStoppedWithContext(aws.BackgroundContext(), input)
}
|
[
"func",
"(",
"c",
"*",
"AppStream",
")",
"WaitUntilFleetStopped",
"(",
"input",
"*",
"DescribeFleetsInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilFleetStoppedWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] |
// WaitUntilFleetStopped uses the Amazon AppStream API operation
// DescribeFleets to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned.
|
[
"WaitUntilFleetStopped",
"uses",
"the",
"Amazon",
"AppStream",
"API",
"operation",
"DescribeFleets",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appstream/waiters.go#L72-L74
|
2,264 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetCommentMetadata
|
func (s *Activity) SetCommentMetadata(v *CommentMetadata) *Activity {
s.CommentMetadata = v
return s
}
|
go
|
func (s *Activity) SetCommentMetadata(v *CommentMetadata) *Activity {
s.CommentMetadata = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetCommentMetadata",
"(",
"v",
"*",
"CommentMetadata",
")",
"*",
"Activity",
"{",
"s",
".",
"CommentMetadata",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCommentMetadata sets the CommentMetadata field's value.
|
[
"SetCommentMetadata",
"sets",
"the",
"CommentMetadata",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4430-L4433
|
2,265 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetIsIndirectActivity
|
func (s *Activity) SetIsIndirectActivity(v bool) *Activity {
s.IsIndirectActivity = &v
return s
}
|
go
|
func (s *Activity) SetIsIndirectActivity(v bool) *Activity {
s.IsIndirectActivity = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetIsIndirectActivity",
"(",
"v",
"bool",
")",
"*",
"Activity",
"{",
"s",
".",
"IsIndirectActivity",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIsIndirectActivity sets the IsIndirectActivity field's value.
|
[
"SetIsIndirectActivity",
"sets",
"the",
"IsIndirectActivity",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4442-L4445
|
2,266 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetOriginalParent
|
func (s *Activity) SetOriginalParent(v *ResourceMetadata) *Activity {
s.OriginalParent = v
return s
}
|
go
|
func (s *Activity) SetOriginalParent(v *ResourceMetadata) *Activity {
s.OriginalParent = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetOriginalParent",
"(",
"v",
"*",
"ResourceMetadata",
")",
"*",
"Activity",
"{",
"s",
".",
"OriginalParent",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOriginalParent sets the OriginalParent field's value.
|
[
"SetOriginalParent",
"sets",
"the",
"OriginalParent",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4454-L4457
|
2,267 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetParticipants
|
func (s *Activity) SetParticipants(v *Participants) *Activity {
s.Participants = v
return s
}
|
go
|
func (s *Activity) SetParticipants(v *Participants) *Activity {
s.Participants = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetParticipants",
"(",
"v",
"*",
"Participants",
")",
"*",
"Activity",
"{",
"s",
".",
"Participants",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetParticipants sets the Participants field's value.
|
[
"SetParticipants",
"sets",
"the",
"Participants",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4460-L4463
|
2,268 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetResourceMetadata
|
func (s *Activity) SetResourceMetadata(v *ResourceMetadata) *Activity {
s.ResourceMetadata = v
return s
}
|
go
|
func (s *Activity) SetResourceMetadata(v *ResourceMetadata) *Activity {
s.ResourceMetadata = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetResourceMetadata",
"(",
"v",
"*",
"ResourceMetadata",
")",
"*",
"Activity",
"{",
"s",
".",
"ResourceMetadata",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetResourceMetadata sets the ResourceMetadata field's value.
|
[
"SetResourceMetadata",
"sets",
"the",
"ResourceMetadata",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4466-L4469
|
2,269 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetTimeStamp
|
func (s *Activity) SetTimeStamp(v time.Time) *Activity {
s.TimeStamp = &v
return s
}
|
go
|
func (s *Activity) SetTimeStamp(v time.Time) *Activity {
s.TimeStamp = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Activity",
")",
"SetTimeStamp",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"Activity",
"{",
"s",
".",
"TimeStamp",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTimeStamp sets the TimeStamp field's value.
|
[
"SetTimeStamp",
"sets",
"the",
"TimeStamp",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4472-L4475
|
2,270 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetNotificationOptions
|
func (s *AddResourcePermissionsInput) SetNotificationOptions(v *NotificationOptions) *AddResourcePermissionsInput {
s.NotificationOptions = v
return s
}
|
go
|
func (s *AddResourcePermissionsInput) SetNotificationOptions(v *NotificationOptions) *AddResourcePermissionsInput {
s.NotificationOptions = v
return s
}
|
[
"func",
"(",
"s",
"*",
"AddResourcePermissionsInput",
")",
"SetNotificationOptions",
"(",
"v",
"*",
"NotificationOptions",
")",
"*",
"AddResourcePermissionsInput",
"{",
"s",
".",
"NotificationOptions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNotificationOptions sets the NotificationOptions field's value.
|
[
"SetNotificationOptions",
"sets",
"the",
"NotificationOptions",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4553-L4556
|
2,271 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetShareResults
|
func (s *AddResourcePermissionsOutput) SetShareResults(v []*ShareResult) *AddResourcePermissionsOutput {
s.ShareResults = v
return s
}
|
go
|
func (s *AddResourcePermissionsOutput) SetShareResults(v []*ShareResult) *AddResourcePermissionsOutput {
s.ShareResults = v
return s
}
|
[
"func",
"(",
"s",
"*",
"AddResourcePermissionsOutput",
")",
"SetShareResults",
"(",
"v",
"[",
"]",
"*",
"ShareResult",
")",
"*",
"AddResourcePermissionsOutput",
"{",
"s",
".",
"ShareResults",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetShareResults sets the ShareResults field's value.
|
[
"SetShareResults",
"sets",
"the",
"ShareResults",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4588-L4591
|
2,272 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetCommentStatus
|
func (s *CommentMetadata) SetCommentStatus(v string) *CommentMetadata {
s.CommentStatus = &v
return s
}
|
go
|
func (s *CommentMetadata) SetCommentStatus(v string) *CommentMetadata {
s.CommentStatus = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CommentMetadata",
")",
"SetCommentStatus",
"(",
"v",
"string",
")",
"*",
"CommentMetadata",
"{",
"s",
".",
"CommentStatus",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCommentStatus sets the CommentStatus field's value.
|
[
"SetCommentStatus",
"sets",
"the",
"CommentStatus",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4731-L4734
|
2,273 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetNotifyCollaborators
|
func (s *CreateCommentInput) SetNotifyCollaborators(v bool) *CreateCommentInput {
s.NotifyCollaborators = &v
return s
}
|
go
|
func (s *CreateCommentInput) SetNotifyCollaborators(v bool) *CreateCommentInput {
s.NotifyCollaborators = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateCommentInput",
")",
"SetNotifyCollaborators",
"(",
"v",
"bool",
")",
"*",
"CreateCommentInput",
"{",
"s",
".",
"NotifyCollaborators",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNotifyCollaborators sets the NotifyCollaborators field's value.
|
[
"SetNotifyCollaborators",
"sets",
"the",
"NotifyCollaborators",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L4852-L4855
|
2,274 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetActivityTypes
|
func (s *DescribeActivitiesInput) SetActivityTypes(v string) *DescribeActivitiesInput {
s.ActivityTypes = &v
return s
}
|
go
|
func (s *DescribeActivitiesInput) SetActivityTypes(v string) *DescribeActivitiesInput {
s.ActivityTypes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeActivitiesInput",
")",
"SetActivityTypes",
"(",
"v",
"string",
")",
"*",
"DescribeActivitiesInput",
"{",
"s",
".",
"ActivityTypes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetActivityTypes sets the ActivityTypes field's value.
|
[
"SetActivityTypes",
"sets",
"the",
"ActivityTypes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L6249-L6252
|
2,275 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetIncludeIndirectActivities
|
func (s *DescribeActivitiesInput) SetIncludeIndirectActivities(v bool) *DescribeActivitiesInput {
s.IncludeIndirectActivities = &v
return s
}
|
go
|
func (s *DescribeActivitiesInput) SetIncludeIndirectActivities(v bool) *DescribeActivitiesInput {
s.IncludeIndirectActivities = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeActivitiesInput",
")",
"SetIncludeIndirectActivities",
"(",
"v",
"bool",
")",
"*",
"DescribeActivitiesInput",
"{",
"s",
".",
"IncludeIndirectActivities",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIncludeIndirectActivities sets the IncludeIndirectActivities field's value.
|
[
"SetIncludeIndirectActivities",
"sets",
"the",
"IncludeIndirectActivities",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L6267-L6270
|
2,276 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetUserActivities
|
func (s *DescribeActivitiesOutput) SetUserActivities(v []*Activity) *DescribeActivitiesOutput {
s.UserActivities = v
return s
}
|
go
|
func (s *DescribeActivitiesOutput) SetUserActivities(v []*Activity) *DescribeActivitiesOutput {
s.UserActivities = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeActivitiesOutput",
")",
"SetUserActivities",
"(",
"v",
"[",
"]",
"*",
"Activity",
")",
"*",
"DescribeActivitiesOutput",
"{",
"s",
".",
"UserActivities",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUserActivities sets the UserActivities field's value.
|
[
"SetUserActivities",
"sets",
"the",
"UserActivities",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L6335-L6338
|
2,277 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetSearchQuery
|
func (s *DescribeGroupsInput) SetSearchQuery(v string) *DescribeGroupsInput {
s.SearchQuery = &v
return s
}
|
go
|
func (s *DescribeGroupsInput) SetSearchQuery(v string) *DescribeGroupsInput {
s.SearchQuery = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeGroupsInput",
")",
"SetSearchQuery",
"(",
"v",
"string",
")",
"*",
"DescribeGroupsInput",
"{",
"s",
".",
"SearchQuery",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSearchQuery sets the SearchQuery field's value.
|
[
"SetSearchQuery",
"sets",
"the",
"SearchQuery",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L6853-L6856
|
2,278 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetUserIds
|
func (s *DescribeUsersInput) SetUserIds(v string) *DescribeUsersInput {
s.UserIds = &v
return s
}
|
go
|
func (s *DescribeUsersInput) SetUserIds(v string) *DescribeUsersInput {
s.UserIds = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeUsersInput",
")",
"SetUserIds",
"(",
"v",
"string",
")",
"*",
"DescribeUsersInput",
"{",
"s",
".",
"UserIds",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUserIds sets the UserIds field's value.
|
[
"SetUserIds",
"sets",
"the",
"UserIds",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L7346-L7349
|
2,279 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetTotalNumberOfUsers
|
func (s *DescribeUsersOutput) SetTotalNumberOfUsers(v int64) *DescribeUsersOutput {
s.TotalNumberOfUsers = &v
return s
}
|
go
|
func (s *DescribeUsersOutput) SetTotalNumberOfUsers(v int64) *DescribeUsersOutput {
s.TotalNumberOfUsers = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeUsersOutput",
")",
"SetTotalNumberOfUsers",
"(",
"v",
"int64",
")",
"*",
"DescribeUsersOutput",
"{",
"s",
".",
"TotalNumberOfUsers",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTotalNumberOfUsers sets the TotalNumberOfUsers field's value.
|
[
"SetTotalNumberOfUsers",
"sets",
"the",
"TotalNumberOfUsers",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L7384-L7387
|
2,280 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetThumbnail
|
func (s *DocumentVersionMetadata) SetThumbnail(v map[string]*string) *DocumentVersionMetadata {
s.Thumbnail = v
return s
}
|
go
|
func (s *DocumentVersionMetadata) SetThumbnail(v map[string]*string) *DocumentVersionMetadata {
s.Thumbnail = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DocumentVersionMetadata",
")",
"SetThumbnail",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"DocumentVersionMetadata",
"{",
"s",
".",
"Thumbnail",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetThumbnail sets the Thumbnail field's value.
|
[
"SetThumbnail",
"sets",
"the",
"Thumbnail",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L7609-L7612
|
2,281 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetCollectionType
|
func (s *GetResourcesInput) SetCollectionType(v string) *GetResourcesInput {
s.CollectionType = &v
return s
}
|
go
|
func (s *GetResourcesInput) SetCollectionType(v string) *GetResourcesInput {
s.CollectionType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetResourcesInput",
")",
"SetCollectionType",
"(",
"v",
"string",
")",
"*",
"GetResourcesInput",
"{",
"s",
".",
"CollectionType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCollectionType sets the CollectionType field's value.
|
[
"SetCollectionType",
"sets",
"the",
"CollectionType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L8397-L8400
|
2,282 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetDocumentSizeInBytes
|
func (s *InitiateDocumentVersionUploadInput) SetDocumentSizeInBytes(v int64) *InitiateDocumentVersionUploadInput {
s.DocumentSizeInBytes = &v
return s
}
|
go
|
func (s *InitiateDocumentVersionUploadInput) SetDocumentSizeInBytes(v int64) *InitiateDocumentVersionUploadInput {
s.DocumentSizeInBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InitiateDocumentVersionUploadInput",
")",
"SetDocumentSizeInBytes",
"(",
"v",
"int64",
")",
"*",
"InitiateDocumentVersionUploadInput",
"{",
"s",
".",
"DocumentSizeInBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDocumentSizeInBytes sets the DocumentSizeInBytes field's value.
|
[
"SetDocumentSizeInBytes",
"sets",
"the",
"DocumentSizeInBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L8589-L8592
|
2,283 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetUploadMetadata
|
func (s *InitiateDocumentVersionUploadOutput) SetUploadMetadata(v *UploadMetadata) *InitiateDocumentVersionUploadOutput {
s.UploadMetadata = v
return s
}
|
go
|
func (s *InitiateDocumentVersionUploadOutput) SetUploadMetadata(v *UploadMetadata) *InitiateDocumentVersionUploadOutput {
s.UploadMetadata = v
return s
}
|
[
"func",
"(",
"s",
"*",
"InitiateDocumentVersionUploadOutput",
")",
"SetUploadMetadata",
"(",
"v",
"*",
"UploadMetadata",
")",
"*",
"InitiateDocumentVersionUploadOutput",
"{",
"s",
".",
"UploadMetadata",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUploadMetadata sets the UploadMetadata field's value.
|
[
"SetUploadMetadata",
"sets",
"the",
"UploadMetadata",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L8639-L8642
|
2,284 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetSendEmail
|
func (s *NotificationOptions) SetSendEmail(v bool) *NotificationOptions {
s.SendEmail = &v
return s
}
|
go
|
func (s *NotificationOptions) SetSendEmail(v bool) *NotificationOptions {
s.SendEmail = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"NotificationOptions",
")",
"SetSendEmail",
"(",
"v",
"bool",
")",
"*",
"NotificationOptions",
"{",
"s",
".",
"SendEmail",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSendEmail sets the SendEmail field's value.
|
[
"SetSendEmail",
"sets",
"the",
"SendEmail",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L8672-L8675
|
2,285 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetOriginalName
|
func (s *ResourceMetadata) SetOriginalName(v string) *ResourceMetadata {
s.OriginalName = &v
return s
}
|
go
|
func (s *ResourceMetadata) SetOriginalName(v string) *ResourceMetadata {
s.OriginalName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceMetadata",
")",
"SetOriginalName",
"(",
"v",
"string",
")",
"*",
"ResourceMetadata",
"{",
"s",
".",
"OriginalName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOriginalName sets the OriginalName field's value.
|
[
"SetOriginalName",
"sets",
"the",
"OriginalName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L8997-L9000
|
2,286 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetComponents
|
func (s *ResourcePath) SetComponents(v []*ResourcePathComponent) *ResourcePath {
s.Components = v
return s
}
|
go
|
func (s *ResourcePath) SetComponents(v []*ResourcePathComponent) *ResourcePath {
s.Components = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourcePath",
")",
"SetComponents",
"(",
"v",
"[",
"]",
"*",
"ResourcePathComponent",
")",
"*",
"ResourcePath",
"{",
"s",
".",
"Components",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetComponents sets the Components field's value.
|
[
"SetComponents",
"sets",
"the",
"Components",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9045-L9048
|
2,287 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetInviteePrincipalId
|
func (s *ShareResult) SetInviteePrincipalId(v string) *ShareResult {
s.InviteePrincipalId = &v
return s
}
|
go
|
func (s *ShareResult) SetInviteePrincipalId(v string) *ShareResult {
s.InviteePrincipalId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ShareResult",
")",
"SetInviteePrincipalId",
"(",
"v",
"string",
")",
"*",
"ShareResult",
"{",
"s",
".",
"InviteePrincipalId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInviteePrincipalId sets the InviteePrincipalId field's value.
|
[
"SetInviteePrincipalId",
"sets",
"the",
"InviteePrincipalId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9187-L9190
|
2,288 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetShareId
|
func (s *ShareResult) SetShareId(v string) *ShareResult {
s.ShareId = &v
return s
}
|
go
|
func (s *ShareResult) SetShareId(v string) *ShareResult {
s.ShareId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ShareResult",
")",
"SetShareId",
"(",
"v",
"string",
")",
"*",
"ShareResult",
"{",
"s",
".",
"ShareId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetShareId sets the ShareId field's value.
|
[
"SetShareId",
"sets",
"the",
"ShareId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9205-L9208
|
2,289 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetStorageAllocatedInBytes
|
func (s *StorageRuleType) SetStorageAllocatedInBytes(v int64) *StorageRuleType {
s.StorageAllocatedInBytes = &v
return s
}
|
go
|
func (s *StorageRuleType) SetStorageAllocatedInBytes(v int64) *StorageRuleType {
s.StorageAllocatedInBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"StorageRuleType",
")",
"SetStorageAllocatedInBytes",
"(",
"v",
"int64",
")",
"*",
"StorageRuleType",
"{",
"s",
".",
"StorageAllocatedInBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStorageAllocatedInBytes sets the StorageAllocatedInBytes field's value.
|
[
"SetStorageAllocatedInBytes",
"sets",
"the",
"StorageAllocatedInBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9244-L9247
|
2,290 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetEndPoint
|
func (s *Subscription) SetEndPoint(v string) *Subscription {
s.EndPoint = &v
return s
}
|
go
|
func (s *Subscription) SetEndPoint(v string) *Subscription {
s.EndPoint = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Subscription",
")",
"SetEndPoint",
"(",
"v",
"string",
")",
"*",
"Subscription",
"{",
"s",
".",
"EndPoint",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEndPoint sets the EndPoint field's value.
|
[
"SetEndPoint",
"sets",
"the",
"EndPoint",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9280-L9283
|
2,291 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetVersionStatus
|
func (s *UpdateDocumentVersionInput) SetVersionStatus(v string) *UpdateDocumentVersionInput {
s.VersionStatus = &v
return s
}
|
go
|
func (s *UpdateDocumentVersionInput) SetVersionStatus(v string) *UpdateDocumentVersionInput {
s.VersionStatus = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateDocumentVersionInput",
")",
"SetVersionStatus",
"(",
"v",
"string",
")",
"*",
"UpdateDocumentVersionInput",
"{",
"s",
".",
"VersionStatus",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetVersionStatus sets the VersionStatus field's value.
|
[
"SetVersionStatus",
"sets",
"the",
"VersionStatus",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9473-L9476
|
2,292 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetGrantPoweruserPrivileges
|
func (s *UpdateUserInput) SetGrantPoweruserPrivileges(v string) *UpdateUserInput {
s.GrantPoweruserPrivileges = &v
return s
}
|
go
|
func (s *UpdateUserInput) SetGrantPoweruserPrivileges(v string) *UpdateUserInput {
s.GrantPoweruserPrivileges = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateUserInput",
")",
"SetGrantPoweruserPrivileges",
"(",
"v",
"string",
")",
"*",
"UpdateUserInput",
"{",
"s",
".",
"GrantPoweruserPrivileges",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGrantPoweruserPrivileges sets the GrantPoweruserPrivileges field's value.
|
[
"SetGrantPoweruserPrivileges",
"sets",
"the",
"GrantPoweruserPrivileges",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9679-L9682
|
2,293 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetSignedHeaders
|
func (s *UploadMetadata) SetSignedHeaders(v map[string]*string) *UploadMetadata {
s.SignedHeaders = v
return s
}
|
go
|
func (s *UploadMetadata) SetSignedHeaders(v map[string]*string) *UploadMetadata {
s.SignedHeaders = v
return s
}
|
[
"func",
"(",
"s",
"*",
"UploadMetadata",
")",
"SetSignedHeaders",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"UploadMetadata",
"{",
"s",
".",
"SignedHeaders",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSignedHeaders sets the SignedHeaders field's value.
|
[
"SetSignedHeaders",
"sets",
"the",
"SignedHeaders",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9765-L9768
|
2,294 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetUploadUrl
|
func (s *UploadMetadata) SetUploadUrl(v string) *UploadMetadata {
s.UploadUrl = &v
return s
}
|
go
|
func (s *UploadMetadata) SetUploadUrl(v string) *UploadMetadata {
s.UploadUrl = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UploadMetadata",
")",
"SetUploadUrl",
"(",
"v",
"string",
")",
"*",
"UploadMetadata",
"{",
"s",
".",
"UploadUrl",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUploadUrl sets the UploadUrl field's value.
|
[
"SetUploadUrl",
"sets",
"the",
"UploadUrl",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9771-L9774
|
2,295 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetRecycleBinFolderId
|
func (s *User) SetRecycleBinFolderId(v string) *User {
s.RecycleBinFolderId = &v
return s
}
|
go
|
func (s *User) SetRecycleBinFolderId(v string) *User {
s.RecycleBinFolderId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"User",
")",
"SetRecycleBinFolderId",
"(",
"v",
"string",
")",
"*",
"User",
"{",
"s",
".",
"RecycleBinFolderId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRecycleBinFolderId sets the RecycleBinFolderId field's value.
|
[
"SetRecycleBinFolderId",
"sets",
"the",
"RecycleBinFolderId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9879-L9882
|
2,296 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetRootFolderId
|
func (s *User) SetRootFolderId(v string) *User {
s.RootFolderId = &v
return s
}
|
go
|
func (s *User) SetRootFolderId(v string) *User {
s.RootFolderId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"User",
")",
"SetRootFolderId",
"(",
"v",
"string",
")",
"*",
"User",
"{",
"s",
".",
"RootFolderId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRootFolderId sets the RootFolderId field's value.
|
[
"SetRootFolderId",
"sets",
"the",
"RootFolderId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L9885-L9888
|
2,297 |
aws/aws-sdk-go
|
service/workdocs/api.go
|
SetStorageUtilizedInBytes
|
func (s *UserStorageMetadata) SetStorageUtilizedInBytes(v int64) *UserStorageMetadata {
s.StorageUtilizedInBytes = &v
return s
}
|
go
|
func (s *UserStorageMetadata) SetStorageUtilizedInBytes(v int64) *UserStorageMetadata {
s.StorageUtilizedInBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UserStorageMetadata",
")",
"SetStorageUtilizedInBytes",
"(",
"v",
"int64",
")",
"*",
"UserStorageMetadata",
"{",
"s",
".",
"StorageUtilizedInBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStorageUtilizedInBytes sets the StorageUtilizedInBytes field's value.
|
[
"SetStorageUtilizedInBytes",
"sets",
"the",
"StorageUtilizedInBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workdocs/api.go#L10014-L10017
|
2,298 |
aws/aws-sdk-go
|
service/fms/api.go
|
SetViolationReason
|
func (s *ComplianceViolator) SetViolationReason(v string) *ComplianceViolator {
s.ViolationReason = &v
return s
}
|
go
|
func (s *ComplianceViolator) SetViolationReason(v string) *ComplianceViolator {
s.ViolationReason = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ComplianceViolator",
")",
"SetViolationReason",
"(",
"v",
"string",
")",
"*",
"ComplianceViolator",
"{",
"s",
".",
"ViolationReason",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetViolationReason sets the ViolationReason field's value.
|
[
"SetViolationReason",
"sets",
"the",
"ViolationReason",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/fms/api.go#L1561-L1564
|
2,299 |
aws/aws-sdk-go
|
service/fms/api.go
|
SetDeleteAllPolicyResources
|
func (s *DeletePolicyInput) SetDeleteAllPolicyResources(v bool) *DeletePolicyInput {
s.DeleteAllPolicyResources = &v
return s
}
|
go
|
func (s *DeletePolicyInput) SetDeleteAllPolicyResources(v bool) *DeletePolicyInput {
s.DeleteAllPolicyResources = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeletePolicyInput",
")",
"SetDeleteAllPolicyResources",
"(",
"v",
"bool",
")",
"*",
"DeletePolicyInput",
"{",
"s",
".",
"DeleteAllPolicyResources",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeleteAllPolicyResources sets the DeleteAllPolicyResources field's value.
|
[
"SetDeleteAllPolicyResources",
"sets",
"the",
"DeleteAllPolicyResources",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/fms/api.go#L1648-L1651
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.